diff options
author | Peter Jones <pjones@redhat.com> | 2005-03-04 19:41:11 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-03-04 19:41:11 +0000 |
commit | ff0ab63a39af110547deb8c242307f79b4195285 (patch) | |
tree | 3cee1e832b372473c3aa2825d77f2e02aa2b044f | |
parent | da6750ae2cdca4947032097a1a00ea8ded860553 (diff) | |
download | anaconda-ff0ab63a39af110547deb8c242307f79b4195285.tar.gz anaconda-ff0ab63a39af110547deb8c242307f79b4195285.tar.xz anaconda-ff0ab63a39af110547deb8c242307f79b4195285.zip |
Fix __str__ parameter names so we don't traceback while debugging.
-rw-r--r-- | partRequests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/partRequests.py b/partRequests.py index 5da81c967..ff765afa2 100644 --- a/partRequests.py +++ b/partRequests.py @@ -166,7 +166,7 @@ class RequestSpec: {"mount": self.mountpoint, "id": self.uniqueID, "fstype": fsname, "format": self.format, "bb": self.badblocks, "dev": self.device, "migrate": self.migrate, - "bytesPerInode": self.bytesPerInode, "options": self.fsopts}) + "bytesPerInode": self.bytesPerInode, "fsopts": self.fsopts}) return str def getActualSize(self, partitions, diskset): @@ -494,7 +494,7 @@ class PartitionSpec(RequestSpec): "grow": self.grow, "max": self.maxSizeMB, "start": self.start, "end": self.end, "bb": self.badblocks, "migrate": self.migrate, "origfs": oldfs, - "bytesPerInode": self.bytesPerInode, "options": self.fsopts}) + "bytesPerInode": self.bytesPerInode, "fsopts": self.fsopts}) return str @@ -911,7 +911,7 @@ class LogicalVolumeRequestSpec(RequestSpec): "fstype": fsname, "format": self.format, "bb": self.badblocks, "lvname": self.logicalVolumeName, "vgid": self.volumeGroup, "size": size, "bytesPerInode": self.bytesPerInode, - "options": self.fsopts}) + "fsopts": self.fsopts}) return str def getDevice(self, partitions): |