diff options
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/DefaultWizard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/DefaultWizard.py b/lib/python/Screens/DefaultWizard.py index 33a3d20e..c74e5866 100644 --- a/lib/python/Screens/DefaultWizard.py +++ b/lib/python/Screens/DefaultWizard.py @@ -14,8 +14,8 @@ config.misc.defaultchosen = ConfigBoolean(default = True) import xml.sax class DefaultWizard(WizardLanguage, DreamInfoHandler): - def __init__(self, session, silent = True): - DreamInfoHandler.__init__(self, self.statusCallback) + def __init__(self, session, silent = True, showSteps = False, neededTag = None): + DreamInfoHandler.__init__(self, self.statusCallback, neededTag = neededTag) self.silent = silent self.setDirectory() |
