From e040029a410624a4e239ead892304c92a82b8bd4 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Tue, 19 Apr 2016 19:18:05 +0200 Subject: [PATCH] Just a little typo --- cura_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.