summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))