From: Felix Domke Date: Wed, 30 Nov 2005 01:53:22 +0000 (+0000) Subject: workaround for missing reference X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=9a9d54ceb81e2f7637af6c5153f248208138f29a workaround for missing reference --- diff --git a/lib/python/Components/ServiceScan.py b/lib/python/Components/ServiceScan.py index 0064ff8..24bbc10 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 -