aboutsummaryrefslogtreecommitdiff
path: root/src/ee/formatting/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/formatting/__init__.py')
-rw-r--r--src/ee/formatting/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ee/formatting/__init__.py b/src/ee/formatting/__init__.py
index c2b5688..4527a96 100644
--- a/src/ee/formatting/__init__.py
+++ b/src/ee/formatting/__init__.py
@@ -72,7 +72,7 @@ def eng_str(value, unit=None):
s = '0' + (' ' + unit if unit is not None else '')
else:
big = ['k', 'M', 'G', 'T']
- small = ['m', 'u', 'p']
+ small = ['m', 'u', 'n', 'p']
if unit is not None:
big = [' ' + unit] + [' ' + x + unit for x in big]