datasize icon indicating copy to clipboard operation
datasize copied to clipboard

right padding for 1,2 char units+prefixes are weird

Open aphor opened this issue 10 years ago • 0 comments

This

>>> '{}'.format(DataSize(1))
>>> '1B  '

should work more like

>>> '{}'.format(DataSize(1))
>>> '1B'

aphor avatar May 02 '16 00:05 aphor