summaryrefslogtreecommitdiffstats
path: root/upgrade.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-03-27 15:33:52 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-03-30 09:42:56 -1000
commite76393b6dbb2cd2934ad066967c2dcba12641e2c (patch)
tree167949db58ec12f95cc47b89041380e3daf84e43 /upgrade.py
parentc25b52ff42b035c0a7b2968418487c618bc32def (diff)
downloadanaconda-e76393b6dbb2cd2934ad066967c2dcba12641e2c.tar.gz
anaconda-e76393b6dbb2cd2934ad066967c2dcba12641e2c.tar.xz
anaconda-e76393b6dbb2cd2934ad066967c2dcba12641e2c.zip
Fix typo in upgrade.py
else -> else:
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py
index 79231af2e..b58918d8e 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -75,7 +75,7 @@ def isUpgradingArch(anaconda):
import re
if re.match("i.86", a) and re.match("i.86", b):
return True
- else
+ else:
return a == b
try: