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-21 21:23:07 +0300
committerThomas-Karl Pietrowski <thopiekar@googlemail.com>2016-04-21 21:23:07 +0300
commit7d2b329e78491c4bd8ab8ad84965de494906f55f (patch)
treed4d3cfdb9f15696872ca2d2c814e3da7beee9369 /cura_app.py
parent3a61cf31523dc124a41c94802e7adc890f41db73 (diff)
Just a stupid mistake
.reverse() does not return anything (None)
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 f7b03e273a..dc748435f9 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
PYTHONPATH = os.environ["PYTHONPATH"].split(os.pathsep) # Get the value, split it..
- PYTHONPATH = PYTHONPATH.reverse() # and reverse it, because we always insert at 1
+ PYTHONPATH.reverse() # and reverse it, because we always insert at 1
for PATH in PYTHONPATH: # Now beginning with the last PATH
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..