diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-07-28 09:18:29 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-07-28 09:18:29 +0000 |
| commit | f09c607ad3904b0adfe65a3f4519d79861711d4b (patch) | |
| tree | 2bd78d8f2d8295eaa52545afb2cc472b765a916a /lib/python/Plugins/Extensions/PicturePlayer | |
| parent | 51a80d8a7f6a339a214db9e012feadb66322d380 (diff) | |
| download | enigma2-f09c607ad3904b0adfe65a3f4519d79861711d4b.tar.gz enigma2-f09c607ad3904b0adfe65a3f4519d79861711d4b.zip | |
fix *required* kwargs. plugins not having **kwargs will probably not run with newer enigma2, but this has been documented since the beginning.
Diffstat (limited to 'lib/python/Plugins/Extensions/PicturePlayer')
| -rw-r--r-- | lib/python/Plugins/Extensions/PicturePlayer/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py index c54669bb..4462df13 100644 --- a/lib/python/Plugins/Extensions/PicturePlayer/plugin.py +++ b/lib/python/Plugins/Extensions/PicturePlayer/plugin.py @@ -533,7 +533,7 @@ def main(session, **kwargs): def filescan_open(list, session, **kwargs): session.open(picmain) # list -def filescan(): +def filescan(**kwargs): # we expect not to be called if the MediaScanner plugin is not available, # thus we don't catch an ImportError exception here from Plugins.Extensions.MediaScanner.plugin import Scanner, ScanPath |
