diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-22 21:19:03 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-03-22 21:19:03 +0000 |
| commit | 43345b7740de3828a5a2d65b608aa4a6c21094c1 (patch) | |
| tree | 31df80511b22f6280a77834e75c8af7184fad9b0 /lib/python/Screens/EventView.py | |
| parent | 6a93f449730ffbeed819786a4dcd0bd5803511b7 (diff) | |
| download | enigma2-43345b7740de3828a5a2d65b608aa4a6c21094c1.tar.gz enigma2-43345b7740de3828a5a2d65b608aa4a6c21094c1.zip | |
fix type
Diffstat (limited to 'lib/python/Screens/EventView.py')
| -rw-r--r-- | lib/python/Screens/EventView.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/EventView.py b/lib/python/Screens/EventView.py index bb45836d..498702e5 100644 --- a/lib/python/Screens/EventView.py +++ b/lib/python/Screens/EventView.py @@ -99,7 +99,7 @@ class EventViewBase: # search similar broadcastings ret = epgcache.search(('NB', 100, eEPGCache.SIMILAR_BROADCASTINGS_SEARCH, refstr, id)) if ret is not None: - text += '\n\n' + _('Similar broadcastings:') + text += '\n\n' + _('Similar broadcasts:') ret.sort(self.sort_func) for x in ret: t = localtime(x[1]) |
