summaryrefslogtreecommitdiffstats
path: root/comps.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-07-12 22:35:39 +0000
committerMatt Wilson <msw@redhat.com>2000-07-12 22:35:39 +0000
commitcc5e0782ed72243796f8b6f298792f4cd02d57eb (patch)
tree08e948a5d899c2105b1f65897290901084050f82 /comps.py
parent658c58eaecf9528f3ce6e082fe2b09408e85c61a (diff)
downloadanaconda-cc5e0782ed72243796f8b6f298792f4cd02d57eb.tar.gz
anaconda-cc5e0782ed72243796f8b6f298792f4cd02d57eb.tar.xz
anaconda-cc5e0782ed72243796f8b6f298792f4cd02d57eb.zip
zero pad the little part
Diffstat (limited to 'comps.py')
-rw-r--r--comps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/comps.py b/comps.py
index ad55def84..f1be9e983 100644
--- a/comps.py
+++ b/comps.py
@@ -282,7 +282,7 @@ class ComponentSet:
if (megs >= 1000):
big = megs / 1000
little = megs % 1000
- return "%d,%dM" % (big, little)
+ return "%d,%03dM" % (big, little)
return "%dM" % (megs)