aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-29 23:51:29 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-29 23:51:29 +0000
commit6c5be5e892a12b25377ca600741bb11bb8e1872f (patch)
tree112f5421e0f7b3ac3b8932dc05dd674e3310a67b /lib/python/Components
parente8d45f8dac0c8141bbd9a64be86a02729d07978c (diff)
downloadenigma2-6c5be5e892a12b25377ca600741bb11bb8e1872f.tar.gz
enigma2-6c5be5e892a12b25377ca600741bb11bb8e1872f.zip
don't translate empty string
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/EventInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/EventInfo.py b/lib/python/Components/EventInfo.py
index 77c31f1d..f295281a 100644
--- a/lib/python/Components/EventInfo.py
+++ b/lib/python/Components/EventInfo.py
@@ -41,5 +41,5 @@ class EventInfo(PerServiceDisplay):
def stopEvent(self):
self.setText(
#(_("waiting for event data..."), "", "--:--", "--:--", "--:--", "--:--")[self.now_or_next]);
- ((""), "", "--:--", "--:--", "--:--", "--:--")[self.now_or_next]);
+ ("", "", "--:--", "--:--", "--:--", "--:--")[self.now_or_next]);