Browse Source

prism-auto: cleanup getFilesInDir call

The function call used 3 arguments, but getFilesInDir only takes 2.

Currently, getOutFilesInDir is not actually used.
master
Joachim Klein 8 years ago
committed by GitHub
parent
commit
da3503a3c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      prism/etc/scripts/prism-auto

2
prism/etc/scripts/prism-auto

@ -192,7 +192,7 @@ def getMatchingAutoFilesInDir(dir, modelFile):
# Get a list of all out files in a directory
def getOutFilesInDir(dir):
return getFilesInDir(dir, isOutFile, false)
return getFilesInDir(dir, isOutFile)
# Get a list of all out files in a directory whose prefix matches a model file name

Loading…
Cancel
Save