[file_utils] dirpacker: fix verbose list printing

This commit is contained in:
Matteo Cypriani 2014-06-01 21:53:42 -04:00
parent 3148df9356
commit f67cb3253a
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Bin:
if options.machine_readable: if options.machine_readable:
print(self.name(), end="") print(self.name(), end="")
else: else:
print("{:12.2f} MiB".format(size)) print("{:12.2f} MiB".format(size), end="")
print("\t{}".format(filename)) print("\t{}".format(filename))
if not options.machine_readable: if not options.machine_readable:
sizefree = options.maxbinsize - self.size sizefree = options.maxbinsize - self.size