datasize
datasize copied to clipboard
right padding for 1,2 char units+prefixes are weird
This
>>> '{}'.format(DataSize(1))
>>> '1B '
should work more like
>>> '{}'.format(DataSize(1))
>>> '1B'