From: Felix Domke Date: Wed, 30 Nov 2005 01:53:22 +0000 (+0000) Subject: workaround for missing reference X-Git-Tag: 2.6.0~4863 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/9a9d54ceb81e2f7637af6c5153f248208138f29a?hp=f7ff39ec6af77dce898ddb24aa30e75df569dbd2 workaround for missing reference --- 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 -