diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-19 00:12:13 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-19 00:12:13 +0000 |
| commit | 5763b994b39952bc06a75e634b4418f13b0aeaf2 (patch) | |
| tree | 17b26666565ddabde45a2867463795f1fd253a7f /lib/python/Screens/Wizard.py | |
| parent | 3da80fb995746d6be853bfedf749d6e6c872b5e6 (diff) | |
| download | enigma2-5763b994b39952bc06a75e634b4418f13b0aeaf2.tar.gz enigma2-5763b994b39952bc06a75e634b4418f13b0aeaf2.zip | |
fix bluescreen when wizard ends
dont ask to scan 2nd NIM when both nims have the same satellites configured
Diffstat (limited to 'lib/python/Screens/Wizard.py')
| -rw-r--r-- | lib/python/Screens/Wizard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index ca518192..fc76bcd2 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -166,7 +166,7 @@ class Wizard(Screen, HelpableScreen): if (currStep == self.numSteps): # wizard finished self.markDone() - self.session.close() + self.close() else: self.runCode(self.wizard[currStep]["codeafter"]) if self.wizard[currStep]["nextstep"] is not None: |
