diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-08 16:26:14 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-08 16:26:14 +0000 |
| commit | ef273c7a1a88b97d6338a1549e91c22a20c690ac (patch) | |
| tree | 30a8f1fc9484b69a294ae31d8eeac139fcf06993 /lib/python | |
| parent | daf0e9d82075e4f2bf9dc73267acc282c5d4bd1d (diff) | |
| download | enigma2-ef273c7a1a88b97d6338a1549e91c22a20c690ac.tar.gz enigma2-ef273c7a1a88b97d6338a1549e91c22a20c690ac.zip | |
fix following frequently bluescreen
File "/enigma2-1.0-r0/enigma2/lib/python/Screens/InfoBarGenerics.py", line
1917, in __tuneFailed
Notifications.AddPopup(text = error, type = MessageBox.TYPE_ERROR,
timeout = 5, id = "ZapError")
File "/enigma2-1.0-r0/enigma2/lib/python/Tools/Notifications.py", line 45,
in AddPopup
AddNotificationWithID(id, MessageBox, text = text, type = type, timeout
= timeout, close_on_any_key = True)
....
....
....
TypeError: in method 'eLabel_setText', argument 2 of type 'std::string
const &'
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 94f5c211..08bfaf35 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1911,7 +1911,7 @@ class InfoBarServiceErrorPopupSupport: if error not in errors: error = None - error = error is not None and errors[error] + error = error and errors[error] if error is not None: Notifications.AddPopup(text = error, type = MessageBox.TYPE_ERROR, timeout = 5, id = "ZapError") |
