shortened comment line

This commit is contained in:
Philip Eisenlohr 2016-04-24 14:08:05 -05:00
parent 4b7b473d2b
commit c4c24d3a70
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ for subDir in processing_subDirs:
theDir = os.path.abspath(os.path.join(baseDir,subDir))
for theFile in os.listdir(theDir):
if os.path.splitext(theFile)[1] in processing_extensions: # omit anything not fitting our script extensions (skip .py.bak, .py~, and the like)
if os.path.splitext(theFile)[1] 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,os.path.splitext(theFile)[0]))