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 <ghost_keeper+github@hotmail.com>2016-03-02 19:31:28 +0300
committerGhostkeeper <ghost_keeper+github@hotmail.com>2016-03-02 19:31:58 +0300
commit7a913bf99ab2a0730b9f340c5d0645bc03efbc02 (patch)
tree82999c73f4439791cc9c9f82979b0a13ec6f254f /plugins/GCodeProfileReader
parent2ca2581915d4185490810f4bf5911ebaa15cf96b (diff)
Fix comment
It had some variable name pasted into it by accident. Contributes to issue CURA-936.
Diffstat (limited to 'plugins/GCodeProfileReader')
-rw-r--r--plugins/GCodeProfileReader/GCodeProfileReader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/GCodeProfileReader/GCodeProfileReader.py b/plugins/GCodeProfileReader/GCodeProfileReader.py
index 140547a05c..50048d831b 100644
--- a/plugins/GCodeProfileReader/GCodeProfileReader.py
+++ b/plugins/GCodeProfileReader/GCodeProfileReader.py
@@ -69,7 +69,7 @@ class GCodeProfileReader(ProfileReader):
profile.setType(None) #Force type to none so it's correctly added.
profile.setReadOnly(False)
profile.setDirty(True)
- except Exception as e: #Not a valid g-comachine_instance_profilede file.
+ except Exception as e: #Not a valid g-code file.
Logger.log("e", "Unable to serialise the profile: %s", str(e))
return None
return profile \ No newline at end of file