mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 23:31:27 +00:00
Partially python3fy ansible.module_utils.basic
Adding
__metaclass__ = type
breaks things, so I didn't include it.
This commit is contained in:
committed by
Sviatoslav Sydorenko
parent
dc08bca1fd
commit
e1ae082a1e
@@ -2,6 +2,8 @@
|
||||
# Copyright (c), Toshio Kuratomi <tkuratomi@ansible.com> 2016
|
||||
# Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
|
||||
SIZE_RANGES = {
|
||||
'Y': 1 << 80,
|
||||
'Z': 1 << 70,
|
||||
@@ -621,7 +623,7 @@ def bytes_to_human(size, isbits=False, unit=None):
|
||||
else:
|
||||
suffix = base
|
||||
|
||||
return '%.2f %s' % (float(size) / limit, suffix)
|
||||
return '%.2f %s' % (size / limit, suffix)
|
||||
|
||||
|
||||
def human_to_bytes(number, default_unit=None, isbits=False):
|
||||
|
||||
Reference in New Issue
Block a user