Commit b12cc909 by Antti Rasinen

Fix pretty_bytes for exa- and zettabytes

parent fa963547
......@@ -927,8 +927,8 @@ class AnsibleModule(object):
def pretty_bytes(self,size):
ranges = (
(1<<50L, 'ZB'),
(1<<50L, 'EB'),
(1<<70L, 'ZB'),
(1<<60L, 'EB'),
(1<<50L, 'PB'),
(1<<40L, 'TB'),
(1<<30L, 'GB'),
......
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