aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@2mac.waldobjekt.org>2009-06-15 02:05:00 +0200
committerFelix Domke <tmbinc@2mac.waldobjekt.org>2009-06-15 02:05:00 +0200
commit17d12fc3339d68b023ab6f388a3576af2bcb4949 (patch)
treee1851fd7e7f2ab85b667415ee0158185034b7ce3 /lib/python/Components
parentc68943c97eeb0107f724ec96aae311e319c750a9 (diff)
downloadenigma2-17d12fc3339d68b023ab6f388a3576af2bcb4949.tar.gz
enigma2-17d12fc3339d68b023ab6f388a3576af2bcb4949.zip
use ::getInfoObject for filesize (allows >4G)
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Converter/MovieInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Converter/MovieInfo.py b/lib/python/Components/Converter/MovieInfo.py
index 635cedc4..d5995fe8 100644
--- a/lib/python/Components/Converter/MovieInfo.py
+++ b/lib/python/Components/Converter/MovieInfo.py
@@ -41,7 +41,7 @@ class MovieInfo(Converter, object):
rec_ref_str = info.getInfoString(service, iServiceInformation.sServiceref)
return ServiceReference(rec_ref_str).getServiceName()
elif self.type == self.MOVIE_REC_FILESIZE:
- return "%d MB" % (info.getInfo(service, iServiceInformation.sFileSize) / (1024*1024))
+ return "%d MB" % (info.getInfoObject(service, iServiceInformation.sFileSize) / (1024*1024))
return ""
text = property(getText)