summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/autopart.py b/autopart.py
index 2b5530b72..d1bf2a85c 100644
--- a/autopart.py
+++ b/autopart.py
@@ -917,18 +917,18 @@ def queryAutoPartitionOK(intf, diskset, partitions):
else:
raise ValueError, "Invalid clear part type in doClearPartAction"
- drvstr = "\n\n "
+ drvstr = "\n\n"
if drives == None:
drives = diskset.disks.keys()
drives.sort()
i = 0
for drive in drives:
- drvstr = drvstr + " /dev/%s" % (drive)
- i = i + 1
- if i > 2:
- drvstr = drvstr + "\n "
- i = 0
+ drvstr = drvstr + "%-10s" % ("/dev/"+drive)
+# i = i + 1
+# if i > 3:
+# drvstr = drvstr + "\n "
+# i = 0
drvstr = drvstr +"\n"