diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-24 18:42:55 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-24 18:42:55 +0000 |
commit | 58d3c1a47b52dc9aa5aaf54ccbc3bbc16dfd4577 (patch) | |
tree | b8f50fcf08166cbed7f04456a677d05cf2cee719 /iw | |
parent | 47b0d943515f5a304cb828c5895c7cc1877a5f4f (diff) | |
download | anaconda-58d3c1a47b52dc9aa5aaf54ccbc3bbc16dfd4577.tar.gz anaconda-58d3c1a47b52dc9aa5aaf54ccbc3bbc16dfd4577.tar.xz anaconda-58d3c1a47b52dc9aa5aaf54ccbc3bbc16dfd4577.zip |
additional check
Diffstat (limited to 'iw')
-rw-r--r-- | iw/bootdisk.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/iw/bootdisk.py b/iw/bootdisk.py index 80a433355..73cc58fb9 100644 --- a/iw/bootdisk.py +++ b/iw/bootdisk.py @@ -17,8 +17,11 @@ class BootdiskWindow (InstallWindow): self.bootdisk = None def getNext (self): - if self.bootdisk and self.bootdisk.get_active (): return None + if self.bootdisk: + return None + if self.bootdisk.get_active (): + return None threads_leave () try: |