Skip to content

Commit

Permalink
Merge pull request #34 from usefulness/fix_formatting
Browse files Browse the repository at this point in the history
Fix formatting
  • Loading branch information
mateuszkwiecinski authored Mar 25, 2021
2 parents 05469e3 + 1a7dca1 commit f7736a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def sizeof_fmt(num, suffix='B', sign=False):
newSize = os.stat(newFile).st_size
newSizeText = sizeof_fmt(newSize)
diff = newSize - oldSize
diffComment1 = f"{sizeof_fmt(diff, sign=True)} ({oldSizeText} -> {newSizeText})"
diffComment1 = f"**{sizeof_fmt(diff, sign=True)}** ({oldSizeText} -> {newSizeText})"
if is_debug():
print("Old: {} bytes".format(oldSizeText))
print("New: {} bytes".format(newSizeText))
Expand Down

0 comments on commit f7736a4

Please sign in to comment.