[ci/metric] Removed space in numbers (fixed leading 0s issue)

This commit is contained in:
M4x1m3
2020-07-18 16:08:45 +02:00
parent 96d49feaf6
commit 699c653882

View File

@@ -37,7 +37,7 @@ def row_for_elf(elf, requested_section_prefixes):
# String formatting
def iso_separate(string):
space = ' ' # We may want to use a thin non-breaking space as thousands separator
space = '' # We may want to use a thin non-breaking space as thousands separator
return string.replace('_',space).replace('+','+'+space).replace('-','-'+space)
def format_bytes(value, force_sign=False):