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:
authorThomas Karl Pietrowski <thopiekar@googlemail.com>2016-04-19 20:18:05 +0300
committerThomas Karl Pietrowski <thopiekar@googlemail.com>2016-04-19 20:18:05 +0300
commite040029a410624a4e239ead892304c92a82b8bd4 (patch)
treeaadd7e4ba8eda5eb4abdac400defdde5cfcfd54d /cura_app.py
parent839bc1fec8b78188494ae9174218a20d10e4dbd2 (diff)
Just a little typo
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index aa09f22446..afa3eb95df 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -15,7 +15,7 @@ import sys
# incompatibility issues with libArcus
if "PYTHONPATH" in os.environ.keys(): # If PYTHONPATH is used
if sys.path[-1] == os.environ["PYTHONPATH"]: # .. check whether PYTHONPATH is placed incorrectly at the end of sys.path.
- sys.path.pop(-1) # If so remove that element..
+ sys.path.pop(-1) # If so, remove that element..
sys.path.insert(1, os.environ['PYTHONPATH']) # and add it at the correct place again.