aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ServiceScan.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-30 01:53:22 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-30 01:53:22 +0000
commit9a9d54ceb81e2f7637af6c5153f248208138f29a (patch)
tree852d5de3c8694a5843e61a4af275131695732958 /lib/python/Components/ServiceScan.py
parentf7ff39ec6af77dce898ddb24aa30e75df569dbd2 (diff)
downloadenigma2-9a9d54ceb81e2f7637af6c5153f248208138f29a.tar.gz
enigma2-9a9d54ceb81e2f7637af6c5153f248208138f29a.zip
workaround for missing reference
Diffstat (limited to 'lib/python/Components/ServiceScan.py')
-rw-r--r--lib/python/Components/ServiceScan.py3
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
-