make percentage a real percentage

This commit is contained in:
Antoine Beaupré 2015-10-03 10:49:29 -04:00
parent ea5d00436c
commit 2c66e7c233
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class AtticRepositoryConverter(Repository):
for filename in segments:
i += 1
print("\rconverting segment %d/%d in place, %.2f%% done (%s)"
% (i, len(segments), float(i)/len(segments), filename), end='')
% (i, len(segments), 100*float(i)/len(segments), filename), end='')
if dryrun:
time.sleep(0.001)
else: