scanner: Remove unused argument for progress helper.

This commit is contained in:
Thomas Adamcik 2013-11-06 21:14:11 +01:00
parent dc3cf427b6
commit 86926e8011

View File

@ -122,7 +122,7 @@ class Progress(object):
self.total = total
self.start = time.time()
def increment(self, force=False):
def increment(self):
self.count += 1
if self.count % 1000 == 0 or self.count == self.total:
duration = time.time() - self.start