diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-31 01:52:52 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-31 01:52:52 +0000 |
commit | 606d1e3e8899d6e754d617c7b19e1bb56b4853f8 (patch) | |
tree | e98f85becf0dc907c3db0e8bf62bc36c4ad928ab /iw | |
parent | 004cdf34e7b16be3d1b65189b56753537e551115 (diff) | |
download | anaconda-606d1e3e8899d6e754d617c7b19e1bb56b4853f8.tar.gz anaconda-606d1e3e8899d6e754d617c7b19e1bb56b4853f8.tar.xz anaconda-606d1e3e8899d6e754d617c7b19e1bb56b4853f8.zip |
made the account screen skippable
Diffstat (limited to 'iw')
-rw-r--r-- | iw/account.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/iw/account.py b/iw/account.py index d4ea00d9e..7c650f6e8 100644 --- a/iw/account.py +++ b/iw/account.py @@ -18,6 +18,8 @@ class AccountWindow (InstallWindow): "</BODY></HTML>") def getNext (self): + if not self.__dict__.has_key("pw"): return None + self.todo.rootpassword.set (self.pw.get_text ()) accounts = [] for n in range(len(self.passwords.keys())): |