From c4c24d3a70b3cf85037eb8013084a31dcfeec0f9 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Sun, 24 Apr 2016 14:08:05 -0500 Subject: [PATCH] shortened comment line --- 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 3f9c38d05..8bd520267 100755 --- a/installation/symlink_Processing.py +++ b/installation/symlink_Processing.py @@ -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]))