diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-05-29 04:25:45 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-05-29 04:25:45 +0000 |
commit | 7c8fb94a91ccfa16072a9da3915bfde3a580a152 (patch) | |
tree | 0d9ac7ecc96a26c34721ad1fb3e0f56ad34fe1d9 /text.py | |
parent | 788b0e42f387a910af7eaa0be8f7f0872a6c7d40 (diff) | |
download | anaconda-7c8fb94a91ccfa16072a9da3915bfde3a580a152.tar.gz anaconda-7c8fb94a91ccfa16072a9da3915bfde3a580a152.tar.xz anaconda-7c8fb94a91ccfa16072a9da3915bfde3a580a152.zip |
oops, fix this up to not crash
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -161,7 +161,7 @@ class InstallInterface: f = None if self.configFileData.has_key("helptag"): - helpTag = "-%s" % (self.cw.configFileData["helptag"],) + helpTag = "-%s" % (self.configFileData["helptag"],) else: helpTag = "" arch = "-%s" % (iutil.getArch(),) |