Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2018-10-10 15:28:50 +0300
committerGhostkeeper <rubend@tutanota.com>2018-10-10 15:28:50 +0300
commit4c6744b6fc75a3a9403bdd8c98664c807b8c597b (patch)
treebddf28f18ed177ceeb15900d8affcea05da91014 /plugins/VersionUpgrade/VersionUpgrade22to24
parente3861b0d90a6d90d94fb5e82a74a8c0d5144db14 (diff)
Code style: Space around binary operators
I just looked for lines with interpolation = None because I was looking for another possible bug, but fixing this in the meanwhile too.
Diffstat (limited to 'plugins/VersionUpgrade/VersionUpgrade22to24')
-rw-r--r--plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py b/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py
index 730a62e591..a56f1f807b 100644
--- a/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py
+++ b/plugins/VersionUpgrade/VersionUpgrade22to24/VersionUpgrade.py
@@ -73,7 +73,7 @@ class VersionUpgrade22to24(VersionUpgrade):
def __convertVariant(self, variant_path):
# Copy the variant to the machine_instances/*_settings.inst.cfg
- variant_config = configparser.ConfigParser(interpolation=None)
+ variant_config = configparser.ConfigParser(interpolation = None)
with open(variant_path, "r", encoding = "utf-8") as fhandle:
variant_config.read_file(fhandle)