summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-08-13 21:20:57 +0000
committerJeremy Katz <katzj@redhat.com>2003-08-13 21:20:57 +0000
commit180fce53541cb6021ef54b127427312633bc5809 (patch)
tree255f4e4caeac95d761b245670789134069e518d0 /iw
parentdcbf2b7a56de276fce40a1e9dbc79305b62e0985 (diff)
downloadanaconda-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.py2
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)