aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Wizard.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 0f8f1998..fd9e9c3c 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -76,6 +76,7 @@ class Wizard(Screen, HelpableScreen):
self["list"] = MenuList(self.list)
self.onShown.append(self.updateValues)
+ self.onClose.append(self.delReferences)
self["actions"] = NumberActionMap(["WizardActions", "NumberActions"],
{
@@ -200,6 +201,9 @@ class Wizard(Screen, HelpableScreen):
else:
self["config"].l.setList([])
+ def delReferences(self):
+ del self.configInstance
+
class WizardManager:
def __init__(self):
self.wizards = []