diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-08-13 21:20:57 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-08-13 21:20:57 +0000 |
commit | 180fce53541cb6021ef54b127427312633bc5809 (patch) | |
tree | 255f4e4caeac95d761b245670789134069e518d0 /iw | |
parent | dcbf2b7a56de276fce40a1e9dbc79305b62e0985 (diff) | |
download | anaconda-180fce53541cb6021ef54b127427312633bc5809.tar.gz anaconda-180fce53541cb6021ef54b127427312633bc5809.tar.xz anaconda-180fce53541cb6021ef54b127427312633bc5809.zip |
fix going back with personal desktop and workstation being related install
classes (#79797)
Diffstat (limited to 'iw')
-rw-r--r-- | iw/installpath_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/installpath_gui.py b/iw/installpath_gui.py index 594f48f06..fc7f5fc85 100644 --- a/iw/installpath_gui.py +++ b/iw/installpath_gui.py @@ -43,7 +43,7 @@ class InstallPathWindow (InstallWindow): if name == self.currentClassName: selection = object - if not isinstance (self.id.instClass, selection): + if self.id.instClass.name != selection.name: c = selection(self.flags.expert) c.setSteps(self.dispatch) c.setInstallData(self.id) |