summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-03 21:57:45 +0000
committerMatt Wilson <msw@redhat.com>1999-09-03 21:57:45 +0000
commitc988aca8264f000617d995f3d714f7924a665b1e (patch)
tree41ff5257c06455eee6c52766f74e9cd6972e35fb /text.py
parent95100c5d8818273febd9f35f63fbb74fefff420e (diff)
downloadanaconda-c988aca8264f000617d995f3d714f7924a665b1e.tar.gz
anaconda-c988aca8264f000617d995f3d714f7924a665b1e.tar.xz
anaconda-c988aca8264f000617d995f3d714f7924a665b1e.zip
fix for classes
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/text.py b/text.py
index 4768fb1e0..3ff675c0e 100644
--- a/text.py
+++ b/text.py
@@ -168,9 +168,9 @@ class InstallPathWindow:
if (choice == 0):
todo.setClass(installclass.GNOMEWorkstation())
elif (choice == 1):
- etodo.setClass(installclass.KDEWorkstation())
+ todo.setClass(installclass.KDEWorkstation())
elif (choice == 2):
- etodo.setClass(installclass.Server())
+ todo.setClass(installclass.Server())
return INSTALL_OK
class UpgradeExamineWindow: