diff options
author | Ales Kozumplik <akozumpl@redhat.com> | 2010-05-12 15:21:00 +0200 |
---|---|---|
committer | Ales Kozumplik <akozumpl@redhat.com> | 2010-05-13 12:44:34 +0200 |
commit | 71c8d071e400201a933f87d621980f273b509f35 (patch) | |
tree | 1e504f70bd17a7ce42c1f263ad5fb64912ca1d7b /iw | |
parent | 093117d281b9232af49e8aea7eb104d00648e0b0 (diff) | |
download | anaconda-71c8d071e400201a933f87d621980f273b509f35.tar.gz anaconda-71c8d071e400201a933f87d621980f273b509f35.tar.xz anaconda-71c8d071e400201a933f87d621980f273b509f35.zip |
logging: remove all references to the "installtype" step.
it has been virtually nonexistent for three years, see
9e1a444c46abcfc29c2e44ffd102fcc1eda6289e,
2d90bc12dcc682a7f0ff68e599cbb81a34a0b4a3 and
076c853f50c10203b45a552735f692b13a191bcb.
I found out about this when auditing the rawhide logs today.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/examine_gui.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py index e40ebf8ab..56c9605a7 100644 --- a/iw/examine_gui.py +++ b/iw/examine_gui.py @@ -47,10 +47,8 @@ class UpgradeExamineWindow (InstallWindow): self.anaconda.upgradeRoot = [(rootfs[0], rootfs[1])] self.anaconda.rootParts = self.parts - self.anaconda.dispatch.skipStep("installtype", skip = 1) self.anaconda.upgrade = True else: - self.anaconda.dispatch.skipStep("installtype", skip = 0) self.anaconda.upgrade = False return None @@ -89,7 +87,7 @@ class UpgradeExamineWindow (InstallWindow): if not seenExamineScreen: # this is the first time we've entered this screen - self.doupgrade = self.anaconda.dispatch.stepInSkipList("installtype") + self.doupgrade = False seenExamineScreen = True else: self.doupgrade = self.anaconda.upgrade |