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/CuraProfileReader
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/CuraProfileReader')
-rw-r--r--plugins/CuraProfileReader/CuraProfileReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CuraProfileReader/CuraProfileReader.py b/plugins/CuraProfileReader/CuraProfileReader.py
index 5957b2cecf..11e58dac6d 100644
--- a/plugins/CuraProfileReader/CuraProfileReader.py
+++ b/plugins/CuraProfileReader/CuraProfileReader.py
@@ -50,7 +50,7 @@ class CuraProfileReader(ProfileReader):
# \param profile_id \type{str} The name of the profile.
# \return \type{List[Tuple[str,str]]} List of serialized profile strings and matching profile names.
def _upgradeProfile(self, serialized, profile_id):
- parser = configparser.ConfigParser(interpolation=None)
+ parser = configparser.ConfigParser(interpolation = None)
parser.read_string(serialized)
if "general" not in parser: