summaryrefslogtreecommitdiff
path: root/horizon/templatetags/sizeformat.py
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/templatetags/sizeformat.py')
-rw-r--r--horizon/templatetags/sizeformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/horizon/templatetags/sizeformat.py b/horizon/templatetags/sizeformat.py
index cc7428793..937f89df2 100644
--- a/horizon/templatetags/sizeformat.py
+++ b/horizon/templatetags/sizeformat.py
@@ -74,7 +74,7 @@ def float_cast_filesizeformat(value, multiplier=1, format=int_format):
value = float(value)
value = filesizeformat(value * multiplier, format).replace(' ', '')
except (TypeError, ValueError):
- value = value or _('0 bytes')
+ value = value or _('0 Bytes')
return value