diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-11-30 01:53:22 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-11-30 01:53:22 +0000 |
| commit | 9a9d54ceb81e2f7637af6c5153f248208138f29a (patch) | |
| tree | 852d5de3c8694a5843e61a4af275131695732958 /lib/python/Components | |
| parent | f7ff39ec6af77dce898ddb24aa30e75df569dbd2 (diff) | |
| download | enigma2-9a9d54ceb81e2f7637af6c5153f248208138f29a.tar.gz enigma2-9a9d54ceb81e2f7637af6c5153f248208138f29a.zip | |
workaround for missing reference
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/ServiceScan.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/ServiceScan.py b/lib/python/Components/ServiceScan.py index 0064ff89..24bbc10e 100644 --- a/lib/python/Components/ServiceScan.py +++ b/lib/python/Components/ServiceScan.py @@ -86,8 +86,9 @@ class ServiceScan: self.scan.statusChanged.get().remove(self.scanStatusChanged) if not self.isDone(): print "*** warning *** scan was not finished!" + + del self.scan def isDone(self): print "state is %d " % (self.state) return self.state == self.Done or self.state == self.Error - |
