summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2009-04-13 11:18:54 -0500
committerDavid Lehman <dlehman@redhat.com>2009-04-13 12:08:03 -0500
commit846b903fc72d66e82fe2d6642a2322aac8d941c7 (patch)
tree6a45d4d899db8309d0b3f85a9f76cdbebe277cc5
parentc6a2f8b2759e9c81a07afd092f2510f80ed72ac4 (diff)
downloadanaconda-846b903fc72d66e82fe2d6642a2322aac8d941c7.tar.gz
anaconda-846b903fc72d66e82fe2d6642a2322aac8d941c7.tar.xz
anaconda-846b903fc72d66e82fe2d6642a2322aac8d941c7.zip
Use the correct value when setting new extent size. (#493753)
-rw-r--r--iw/lvm_dialog_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index c5ea13109..3e42e40e3 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -204,7 +204,7 @@ class VolumeGroupEditor:
# now see if we need to fixup effect PV and LV sizes based on PE
if curval > lastval:
- rc = self.reclampLV(curval)
+ rc = self.reclampLV(curpe)
if not rc:
widget.set_active(lastidx)
return 0