typo in comments

This commit is contained in:
Dimitur Kirov 2005-08-07 21:50:03 +00:00
parent 04ff1b7f73
commit 27658039c2
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def convert_bytes(string):
bytes = round(bytes/1024.,1) bytes = round(bytes/1024.,1)
if bytes >= 1024: if bytes >= 1024:
bytes = round(bytes/1024.,1) bytes = round(bytes/1024.,1)
#Mb means giga bytes #Gb means giga bytes
suffix = _('%s Gb') suffix = _('%s Gb')
else: else:
#Mb means mega bytes #Mb means mega bytes