aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-01-27 15:56:25 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-01-27 15:56:25 +0100
commitfc102394e60824f5c07da710d36ba28eaf160c72 (patch)
tree81c60e29d4c93563c2cdc9b51335accc664c4b5f /lib/python
parenta4fd5bddb0f8c1b05b963cb8af9692f6c89f3dab (diff)
downloadenigma2-fc102394e60824f5c07da710d36ba28eaf160c72.tar.gz
enigma2-fc102394e60824f5c07da710d36ba28eaf160c72.zip
when length is not available, just don't show anything
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/MovieList.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py
index 8568f3d6..5c98e4be 100644
--- a/lib/python/Components/MovieList.py
+++ b/lib/python/Components/MovieList.py
@@ -93,10 +93,7 @@ class MovieList(GUIComponent):
if len > 0:
len = "%d:%02d" % (len / 60, len % 60)
else:
- if config.usage.load_length_of_movies_in_moviellist.value:
- len = "?:??"
- else:
- len = "X:XX"
+ len = ""
res = [ None ]