Commit 15427b92 authored by Tres Seaver's avatar Tres Seaver

Py3k: Avoid 'L' suffixed literal.

parent 92c83408
......@@ -25,8 +25,9 @@ class SuffixMultiplier:
return int(v) * self._default
convert_bytesize = SuffixMultiplier({'kb': 1024,
'mb': 1024*1024,
'gb': 1024*1024*1024L,})
'mb': 1024*1024,
'gb': 1024*1024*1024,
})
def convert_int(value):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment