summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-09-21 19:53:06 +0000
committerJeremy Katz <katzj@redhat.com>2006-09-21 19:53:06 +0000
commit0530dab304b06d3f65c37586f89c0a0751fa0c6d (patch)
tree00c33702beb0702bffbe03e16491c967fb9c8cf2 /iutil.py
parent0edef7675c762031be568c8c0c08bba5dade7201 (diff)
downloadanaconda-0530dab304b06d3f65c37586f89c0a0751fa0c6d.tar.gz
anaconda-0530dab304b06d3f65c37586f89c0a0751fa0c6d.tar.xz
anaconda-0530dab304b06d3f65c37586f89c0a0751fa0c6d.zip
2006-09-21 Jeremy Katz <katzj@redhat.com>
* iutil.py (writeRpmPlatform): Fix flags (#207594)
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iutil.py b/iutil.py
index 73d5012cc..9e6b98a56 100644
--- a/iutil.py
+++ b/iutil.py
@@ -399,8 +399,8 @@ def writeRpmPlatform(root="/"):
myarch = rhpl.arch.canonArch
# now allow an override with rpmarch=i586 on the command line (#101971)
- if flags["targetarch"] != None:
- myarch = flags["targetarch"]
+ if flags.targetarch != None:
+ myarch = flags.targetarch
# now make the current install believe it, too
rhpl.arch.canonArch = myarch