From 3a61cf31523dc124a41c94802e7adc890f41db73 Mon Sep 17 00:00:00 2001 From: Thomas-Karl Pietrowski Date: Thu, 21 Apr 2016 19:41:10 +0200 Subject: [PATCH] Little typo --- cura_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura_app.py b/cura_app.py index bd820337f2..f7b03e273a 100755 --- a/cura_app.py +++ b/cura_app.py @@ -20,7 +20,7 @@ if "PYTHONPATH" in os.environ.keys(): # If PYTHONPATH is u PATH_real = os.path.realpath(PATH) # Making the the path "real" if PATH_real in sys.path: # This should always work, but keep it to be sure.. sys.path.remove(PATH_real) - sys.path.insert(1, PATH_real) # Insert it at 1 before os.curdir, which is 0. + sys.path.insert(1, PATH_real) # Insert it at 1 after os.curdir, which is 0. def exceptHook(hook_type, value, traceback): import cura.CrashHandler