aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-04 19:28:24 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-04 19:28:24 +0000
commit4d839a58f1cb6ca69df2c3cfad7ce832ec9a6d1d (patch)
tree6f91f58ce5ab068bee63afd6cdf641f2eb4a6d5e /lib
parentd1de2263e4fff409a8fa16fc0069a923b4eff14d (diff)
downloadenigma2-4d839a58f1cb6ca69df2c3cfad7ce832ec9a6d1d.tar.gz
enigma2-4d839a58f1cb6ca69df2c3cfad7ce832ec9a6d1d.zip
fix
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py b/lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py
index 25acc43f..f4bc3fad 100644
--- a/lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py
+++ b/lib/python/Plugins/Extensions/ZappingAlternatives/plugin.py
@@ -245,7 +245,10 @@ def playService(self, ref):
def autostart(reason):
if reason == 0:
- loadAlternatives()
+ try:
+ loadAlternatives()
+ except:
+ pass
NavigationInstance.instance.playService = type(NavigationInstance.instance.playService)(playService, NavigationInstance, Navigation)
def AlternativeZappingSetup(session):