summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-05-15 15:02:13 -0400
committerChris Lumens <clumens@redhat.com>2009-05-15 15:02:13 -0400
commite27c9fa3deb0c81a56347bc90b45976afee055c6 (patch)
tree954861e3b987973e955af7f984f85f3630fc6377
parent49f88cf335229ebf1bf140d4afbbe3f74b652141 (diff)
downloadanaconda-e27c9fa3deb0c81a56347bc90b45976afee055c6.tar.gz
anaconda-e27c9fa3deb0c81a56347bc90b45976afee055c6.tar.xz
anaconda-e27c9fa3deb0c81a56347bc90b45976afee055c6.zip
Write out PE size as an integer, since that's what anaconda wants (#501049).
-rw-r--r--storage/devices.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/devices.py b/storage/devices.py
index 44dc878fc..b361d880f 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -1620,7 +1620,7 @@ class LVMVolumeGroupDevice(DMDevice):
return s
def writeKS(self, f, preexisting=False, noformat=False, s=None):
- args = ["--pesize=%s" % self.peSize]
+ args = ["--pesize=%s" % int(self.peSize)]
pvs = []
for pv in self.pvs: