Iterate on values, not on keys
This commit is contained in:
parent
7a0fb52c83
commit
f371ffa696
@ -93,7 +93,7 @@ class UnsquashOperation:
|
|||||||
|
|
||||||
def report_progress(self):
|
def report_progress(self):
|
||||||
progress = float(0)
|
progress = float(0)
|
||||||
for status_entry in self.unpackstatus:
|
for status_entry in self.unpackstatus.values():
|
||||||
if status_entry.total == 0:
|
if status_entry.total == 0:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user