summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-07-31 23:20:33 +0000
committerBill Nottingham <notting@redhat.com>2003-07-31 23:20:33 +0000
commit6736806e92ca2e65cf9d9950012b6311b451c2c5 (patch)
treead4b25775511c272310689c519456ae75b904963 /partedUtils.py
parent09b8626cf66f7877b3204d228baf968d8496e8ad (diff)
downloadanaconda-6736806e92ca2e65cf9d9950012b6311b451c2c5.tar.gz
anaconda-6736806e92ca2e65cf9d9950012b6311b451c2c5.tar.xz
anaconda-6736806e92ca2e65cf9d9950012b6311b451c2c5.zip
fix syntax, causes upgradeany to generally be in affect (#99359)
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 1399d84d9..413bc5bf1 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -438,7 +438,7 @@ def getRedHatReleaseString(mountpoint):
ver = ""
for a in relstr[idx + 8:]:
- if a in string.digits() + ".":
+ if a in string.digits + ".":
ver = ver + a
else:
break