summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-03-13 20:03:36 +0000
committerJeremy Katz <katzj@redhat.com>2006-03-13 20:03:36 +0000
commitb1e28e099a9c3edfd76abdad0a2442f2649dab7b (patch)
treedf14e60831df47aec3e7a714ee6eff490e835c6c /iw
parent998a019d6c905c9fe9d966991c8858caeffaa92f (diff)
downloadanaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.tar.gz
anaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.tar.xz
anaconda-b1e28e099a9c3edfd76abdad0a2442f2649dab7b.zip
2006-03-13 Jeremy Katz <katzj@redhat.com>
* iw/lvm_dialog_gui.py (VolumeGroupEditor.createPEOptionMenu): Cap at 128M instead (#185272)
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 6b2700182..e2ddfffcb 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -245,8 +245,8 @@ class VolumeGroupEditor:
defindex = None
actualPE = lvm.getPossiblePhysicalExtents(floor=1024)
for curpe in actualPE:
- # dont show PE over 64M
- if curpe > 65536:
+ # dont show PE over 128M
+ if curpe > 131072:
continue
val = self.prettyFormatPESize(curpe)