summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--instdata.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a62e3b74a..cda726aa0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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