Skip to content
Snippets Groups Projects
Commit b630dd0d authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

..

parent 0dd03854
No related branches found
No related tags found
No related merge requests found
......@@ -5,13 +5,14 @@
import glob, re
def project_files(ext):
def source_files(root,ext):
fnames = []
# get all files with right extension from pwd
for e in ext:
fnames += sorted( glob.glob( "*."+e ) )
fnames += sorted( glob.glob( root+"*."+e ) )
# remove files known to be machine generated
out = list(fnames)
for f in fnames:
if re.match( r'xax_', f ):
fnames.remove( f )
return fnames
if re.search( r'xax_', f ):
out.remove( f )
return out
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment