Skip to content

Commit

Permalink
Merge pull request #674 from tcely/patch-2
Browse files Browse the repository at this point in the history
Simply add the string we want
  • Loading branch information
meeb authored Feb 1, 2025
2 parents 78e422f + fefe1fb commit 89d395f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubesync/sync/templatetags/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ def bytesformat(input):
output = filesizeformat(input)
if not (output and output.endswith('B', -1)):
return output
return output[: -1 ] + output[ -1 :].replace('B', 'iB', 1)
return output[: -1 ] + 'iB'

0 comments on commit 89d395f

Please sign in to comment.