aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-12-17 02:54:34 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-12-17 02:54:34 +0000
commit654f9ddcbd850acbd23cb0b568632268cfd26f22 (patch)
treed8a85385acb27e3c694e8dd497935e9fd19adb9b /lib/python/Screens
parent7a4cd5866bdfef8cef5dda04649788447d717376 (diff)
downloadenigma2-654f9ddcbd850acbd23cb0b568632268cfd26f22.tar.gz
enigma2-654f9ddcbd850acbd23cb0b568632268cfd26f22.zip
remove workaround
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/Wizard.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 01797267..10bb9f50 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -81,7 +81,6 @@ class Wizard(Screen, HelpableScreen):
self["list"] = MenuList(self.list)
self.onShown.append(self.updateValues)
- self.onClose.append(self.delReferences)
self["actions"] = NumberActionMap(["WizardActions", "NumberActions"],
{
@@ -213,9 +212,6 @@ class Wizard(Screen, HelpableScreen):
self.currStep += 1
self.updateValues()
- def delReferences(self):
- del self.configInstance
-
class WizardManager:
def __init__(self):
self.wizards = []