diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-06 02:15:40 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-06 02:15:40 +0000 |
commit | feef5f6240796c9f62c8b2a48b10e4cc60288bd5 (patch) | |
tree | 2157eb83bb4a206efd730e49b12677170d57daa6 /partitioning.py | |
parent | a43e3514d4035812655e0ab0b668ef99e3fcb4f2 (diff) | |
download | anaconda-feef5f6240796c9f62c8b2a48b10e4cc60288bd5.tar.gz anaconda-feef5f6240796c9f62c8b2a48b10e4cc60288bd5.tar.xz anaconda-feef5f6240796c9f62c8b2a48b10e4cc60288bd5.zip |
secondary isn't used...
Diffstat (limited to 'partitioning.py')
-rw-r--r-- | partitioning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partitioning.py b/partitioning.py index b3bf35859..7a86e9b97 100644 --- a/partitioning.py +++ b/partitioning.py @@ -530,7 +530,7 @@ class PartitionSpec: return "mountpoint: %s type: %s uniqueID:%s\n" %(self.mountpoint, fsname, self.uniqueID) +\ " size: %sM requestSize: %sM grow: %s max: %s\n" %(self.size, self.requestSize, self.grow, self.maxSize) +\ " start: %s end: %s partnum: %s\n" %(self.start, self.end, self.partnum) +\ - " drive: %s primary: %s secondary: %s\n" %(self.drive, self.primary, self.secondary) +\ + " drive: %s primary: %s \n" %(self.drive, self.primary) +\ " format: %s, options: %s" %(self.format, self.options) +\ " device: %s, realDevice: %s\n" %(self.device, self.realDevice)+\ " raidlevel: %s" % (self.raidlevel)+\ |