diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-16 18:30:27 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-16 18:30:27 +0200 |
| commit | a9f871b933a8771d6946395df1e1f0569b3cf582 (patch) | |
| tree | fe48ffbc80ff077138281b6602492d8cbc902994 /lib/python/Components/Converter | |
| parent | 9a2b8cd197039db5a4324149dcf6e817171166bf (diff) | |
| parent | 883a9c93798e01fc2825673799f48bf2a0a68d15 (diff) | |
| download | enigma2-a9f871b933a8771d6946395df1e1f0569b3cf582.tar.gz enigma2-a9f871b933a8771d6946395df1e1f0569b3cf582.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Components/Converter')
| -rw-r--r-- | lib/python/Components/Converter/MovieInfo.py | 2 |
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) |
