summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-10-15 10:26:48 -0400
committerChris Lumens <clumens@redhat.com>2012-10-15 10:26:48 -0400
commit21a9c715ead09d84306ed1a4dd711f947596f4c5 (patch)
tree7160a0132930b6f6764ec5ea1dc706c522656cdf
parent67e0a1990ca7dc68f92b36c9373cc90598cc9577 (diff)
downloadanaconda-21a9c715ead09d84306ed1a4dd711f947596f4c5.tar.gz
anaconda-21a9c715ead09d84306ed1a4dd711f947596f4c5.tar.xz
anaconda-21a9c715ead09d84306ed1a4dd711f947596f4c5.zip
Fix one more reference to bits (#859932).
-rw-r--r--pyanaconda/storage/size.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/storage/size.py b/pyanaconda/storage/size.py
index 65b3e2035..a8da321e5 100644
--- a/pyanaconda/storage/size.py
+++ b/pyanaconda/storage/size.py
@@ -206,7 +206,7 @@ class Size(Decimal):
check = self._trimEnd("%d" % self)
if Decimal(check) < 1000:
- return "%s b" % check
+ return "%s B" % check
for factor, prefix, abbr in _prefixes:
newcheck = super(Size, self).__div__(Decimal(factor))