diff options
author | Chris Lumens <clumens@redhat.com> | 2007-06-18 14:11:47 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-06-18 14:11:47 +0000 |
commit | a927c7f3d6b608bf0409da5b4c0d2e4f02f09582 (patch) | |
tree | b8f5c0d7fc72e1bfcaaef13b64efb51a6565d87a /instdata.py | |
parent | e375a107df49a3c4f69dc014e5f4c86ba6c989ee (diff) | |
download | anaconda-a927c7f3d6b608bf0409da5b4c0d2e4f02f09582.tar.gz anaconda-a927c7f3d6b608bf0409da5b4c0d2e4f02f09582.tar.xz anaconda-a927c7f3d6b608bf0409da5b4c0d2e4f02f09582.zip |
Fix another syntax error.
Diffstat (limited to 'instdata.py')
-rw-r--r-- | instdata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instdata.py b/instdata.py index f0ab0a29c..019561e89 100644 --- a/instdata.py +++ b/instdata.py @@ -61,7 +61,7 @@ class InstallData: self.timezone = timezone.Timezone() self.timezone.setTimezoneInfo(self.instLanguage.getDefaultTimeZone()) self.users = None - self.rootPassword = { "isCrypted": False, "password": "", lock: False } + self.rootPassword = { "isCrypted": False, "password": "", "lock": False } self.auth = "--enableshadow --enablemd5" self.desktop = desktop.Desktop() self.upgrade = None |