diff options
| author | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-15 02:05:00 +0200 |
|---|---|---|
| committer | Felix Domke <tmbinc@2mac.waldobjekt.org> | 2009-06-15 02:05:00 +0200 |
| commit | 17d12fc3339d68b023ab6f388a3576af2bcb4949 (patch) | |
| tree | e1851fd7e7f2ab85b667415ee0158185034b7ce3 /lib/python/Components | |
| parent | c68943c97eeb0107f724ec96aae311e319c750a9 (diff) | |
| download | enigma2-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.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) |
