summaryrefslogtreecommitdiff
path: root/textutils.py
diff options
context:
space:
mode:
authorPierre-Yves David <pierre-yves.david@logilab.fr>2008-06-02 11:42:47 +0200
committerPierre-Yves David <pierre-yves.david@logilab.fr>2008-06-02 11:42:47 +0200
commitc04f1f4d9e5ac236942a4750ea37f1c8a2f6dfb6 (patch)
tree15df7be2a88ca139eec91e46ae24b7ea63b96b97 /textutils.py
parent3615711cafe529cbec12b05e7bdaa5d052c373b7 (diff)
downloadlogilab-common-c04f1f4d9e5ac236942a4750ea37f1c8a2f6dfb6.tar.gz
forgot a coma
Diffstat (limited to 'textutils.py')
-rw-r--r--textutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/textutils.py b/textutils.py
index addc894..b48f8e9 100644
--- a/textutils.py
+++ b/textutils.py
@@ -252,7 +252,7 @@ __UNITS_URE = r'[a-zA-Z]+'
_VALUE_RE = re.compile(r'(?P<value>%s)(?P<unit>%s)?'%(__VALUE_URE,__UNITS_URE))
BYTE_UNITS = {
- "B": 1
+ "B": 1,
"KB": 1024,
"MB": 1024 ** 2,
"GB": 1024 ** 3,