mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
Fix for loop
This commit is contained in:
parent
8cad79831a
commit
d00f3ba79b
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ class VersionUpgrade30to31(VersionUpgrade):
|
|||
parser["containers"]["2"] = "empty_quality"
|
||||
|
||||
# fix empty containers
|
||||
for key, specific_empty_container in _EMPTY_CONTAINER_DICT:
|
||||
for key, specific_empty_container in _EMPTY_CONTAINER_DICT.items():
|
||||
if parser.has_option("containers", key) and parser["containers"][key] == "empty":
|
||||
parser["containers"][key] = specific_empty_container
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue