diff options
author | Mike Fulbright <msf@redhat.com> | 2000-06-01 19:29:33 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-06-01 19:29:33 +0000 |
commit | 811b956ef4ea1cbf995c07138d09f3a6e8877470 (patch) | |
tree | a807b09ba69486539642634c9e1392ff34c9aec8 /textw | |
parent | 69c0c47e7a4eadc9aaebc630c1c7b69b43a56f74 (diff) | |
download | anaconda-811b956ef4ea1cbf995c07138d09f3a6e8877470.tar.gz anaconda-811b956ef4ea1cbf995c07138d09f3a6e8877470.tar.xz anaconda-811b956ef4ea1cbf995c07138d09f3a6e8877470.zip |
dumb error
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partitioning_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partitioning_text.py b/textw/partitioning_text.py index f06092d1c..b9fefface 100644 --- a/textw/partitioning_text.py +++ b/textw/partitioning_text.py @@ -110,7 +110,7 @@ class AutoPartitionWindow: pp = todo.method.protectedPartitions() if pp: for p in pp: - if p[-1:] > 4: + if int(p[-1:]) > 4: todo.fstab.setRunDruid(1) return |