diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-24 19:58:03 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-06-24 19:58:03 +0000 |
| commit | a9e03c73e9b7c9e2bda1418bde9f81dc056f34f8 (patch) | |
| tree | 0f952838ccdf16071c0b238d3e51560f583ce725 /lib/python | |
| parent | 4dca99f0e992fcca15293ee9265eb54d28c175c6 (diff) | |
| download | enigma2-a9e03c73e9b7c9e2bda1418bde9f81dc056f34f8.tar.gz enigma2-a9e03c73e9b7c9e2bda1418bde9f81dc056f34f8.zip | |
its a bad idea to open a screen at every place..
i fix this later..
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaScanner/plugin.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/python/Plugins/Extensions/MediaScanner/plugin.py b/lib/python/Plugins/Extensions/MediaScanner/plugin.py index d2efea57..c5f6043e 100644 --- a/lib/python/Plugins/Extensions/MediaScanner/plugin.py +++ b/lib/python/Plugins/Extensions/MediaScanner/plugin.py @@ -57,11 +57,12 @@ def menuHook(menuid): global_session = None def partitionListChanged(action, device): - if action == 'add' and device.is_hotplug: - print "mountpoint", device.mountpoint - print "description", device.description - print "force_mounted", device.force_mounted - mountpoint_choosen((device.description, device.mountpoint, global_session)) + pass +# if action == 'add' and device.is_hotplug: +# print "mountpoint", device.mountpoint +# print "description", device.description +# print "force_mounted", device.force_mounted +# mountpoint_choosen((device.description, device.mountpoint, global_session)) def sessionstart(reason, session): global global_session |
