From d9c8072a77dd7845ac1d0504b0718f4e1e1d0da1 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Fri, 2 Jun 2017 09:54:54 +0200 Subject: [PATCH] checking file mode --- installation/symlink_Processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/symlink_Processing.py b/installation/symlink_Processing.py index d10b5af55..50ea86e68 100755 --- a/installation/symlink_Processing.py +++ b/installation/symlink_Processing.py @@ -30,7 +30,7 @@ for subDir in processing_subDirs: for theFile in os.listdir(theDir): theName,theExt = os.path.splitext(theFile) - if theExt in processing_extensions: # only consider files with proper extensions + if theExt in processing_extensions: # only consider files with proper extensions src = os.path.abspath(os.path.join(theDir,theFile)) sym_link = os.path.abspath(os.path.join(binDir,theName))