summaryrefslogtreecommitdiffstats
path: root/module/web/pyload/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/pyload/views.py')
-rw-r--r--module/web/pyload/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/web/pyload/views.py b/module/web/pyload/views.py
index a69e7da86..cfcd43061 100644
--- a/module/web/pyload/views.py
+++ b/module/web/pyload/views.py
@@ -28,7 +28,7 @@ def formatSize(size):
"""formats size of bytes"""
size = int(size)
steps = 0
- sizes = ["B", "KB", "MB", "GB", "TB"]
+ sizes = ["KB", "MB", "GB", "TB"]
while size > 1000:
size /= 1024.0