diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | instdata.py | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,9 +1,11 @@ 2007-06-18 Chris Lumens <clumens@redhat.com> + * instdata.py (InstallData.reset): Fix another syntax error. + * urlinstall.py (UrlInstallMethod.__init__): Remove call to removed function (#244528). - * scripts/upd-instroot: libbz2 has changed location (#243566). + * scripts/upd-instroot: libbz2 has changed location (#243566). 2007-06-15 Jeremy Katz <katzj@redhat.com> 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 |