diff options
author | Chris Lumens <clumens@redhat.com> | 2005-05-03 21:21:58 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-05-03 21:21:58 +0000 |
commit | 409b8aabeb22e48a7458a7469c32dbe3fa2dd26c (patch) | |
tree | a69b7fccd7f75cf58a5b8d0e41b7c167de3ba48d /partRequests.py | |
parent | 1449b02ba926481cb331d1dc7b7808f37dc42dd6 (diff) | |
download | anaconda-409b8aabeb22e48a7458a7469c32dbe3fa2dd26c.tar.gz anaconda-409b8aabeb22e48a7458a7469c32dbe3fa2dd26c.tar.xz anaconda-409b8aabeb22e48a7458a7469c32dbe3fa2dd26c.zip |
Allow the resulting string to be put into a call to rhpl.log.
Diffstat (limited to 'partRequests.py')
-rw-r--r-- | partRequests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partRequests.py b/partRequests.py index c751f2b63..b0cd01bc5 100644 --- a/partRequests.py +++ b/partRequests.py @@ -863,7 +863,7 @@ class LogicalVolumeRequestSpec(RequestSpec): if self.size is not None: size = self.size else: - size = "%s%%" %(self.percent,) + size = "%s percent" %(self.percent,) str = ("LV Request -- mountpoint: %(mount)s uniqueID: %(id)s\n" " type: %(fstype)s format: %(format)s badblocks: %(bb)s\n" |