checking file mode

This commit is contained in:
Martin Diehl 2017-06-02 09:54:54 +02:00
parent f085f61c4d
commit d9c8072a77
1 changed files with 1 additions and 1 deletions

View File

@ -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))