mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 00:48:22 -04:00
Iterate on values, not on keys
This commit is contained in:
parent
7a0fb52c83
commit
f371ffa696
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue