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:
-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.