aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-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)