diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-04-14 04:04:38 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-04-14 04:04:38 +0000 |
commit | 3a7ed67eede5d9011e08210bd0df0dc7bef2c26a (patch) | |
tree | 176999b0728469a20a5f96b6624ac60179d60828 /upgrade.py | |
parent | 98c6e30db0b2938af3fe92a7b12c624239aa6775 (diff) | |
download | anaconda-3a7ed67eede5d9011e08210bd0df0dc7bef2c26a.tar.gz anaconda-3a7ed67eede5d9011e08210bd0df0dc7bef2c26a.tar.xz anaconda-3a7ed67eede5d9011e08210bd0df0dc7bef2c26a.zip |
stupid tyop fix
Diffstat (limited to 'upgrade.py')
-rw-r--r-- | upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py index f958e1cde..e71fc3891 100644 --- a/upgrade.py +++ b/upgrade.py @@ -461,7 +461,7 @@ def upgradeFindPackages(intf, method, id, instPath, dir): h[rpm.RPMTAG_VERSION], h[rpm.RPMTAG_RELEASE])) found = 1 - if h[rpm.RPMTAG_NAME] == "XFree86" or h[rpm.RPMTAG_NAME] == "xorg-x11" + if h[rpm.RPMTAG_NAME] == "XFree86" or h[rpm.RPMTAG_NAME] == "xorg-x11": hasX = 1 if h[rpm.RPMTAG_NAME] == "nautilus": hasFileManager = 1 |