diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-11-15 05:04:53 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-11-15 05:04:53 +0000 |
| commit | b798eda0c349de892b15ad4b37f0a4e5533d4e8a (patch) | |
| tree | db6ac669b642b964068590ec06c4da522a42806e | |
| parent | fbbbf042f43b4fcdb8f50a4abd2e8fdc8d3a94a0 (diff) | |
| download | enigma2-b798eda0c349de892b15ad4b37f0a4e5533d4e8a.tar.gz enigma2-b798eda0c349de892b15ad4b37f0a4e5533d4e8a.zip | |
fix servicePosition
| -rw-r--r-- | lib/python/Components/ServicePosition.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/ServicePosition.py b/lib/python/Components/ServicePosition.py index e402751c..7bfef931 100644 --- a/lib/python/Components/ServicePosition.py +++ b/lib/python/Components/ServicePosition.py @@ -33,7 +33,7 @@ class ServicePosition(PerServiceDisplay): self.available = 0 if service != None: - seek = service.seek(seek) + seek = service.seek() if seek != None: if self.type != self.TYPE_LENGTH: self.updateTimer.start(500) @@ -47,7 +47,7 @@ class ServicePosition(PerServiceDisplay): service = self.navcore.getCurrentService() if service != None: - seek = service.seek(seek) + seek = service.seek() if seek != None: if what == self.TYPE_LENGTH: r = seek.getLength() |
