diff --git a/mopidy/scanner.py b/mopidy/scanner.py index ee54c04d..30fb553b 100644 --- a/mopidy/scanner.py +++ b/mopidy/scanner.py @@ -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