Skip to content
Snippets Groups Projects
Commit 860b9a99 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Remove some accidentally committed code in checkIncludes.py

parent 58fc42fd
No related branches found
No related tags found
No related merge requests found
......@@ -58,21 +58,12 @@ def load_include_rules(fname):
result.addPattern(line)
return result
MDD = "--mdd" in sys.argv[1:]
if MDD:
print(
for dirpath, dirnames, fnames in os.walk("src"):
if ".may_include" in fnames:
rules = load_include_rules(os.path.join(dirpath, RULES_FNAME))
if MDD:
dp = dirpath.replace("src/","")
rules.dump_mdd(dp)
else:
for fname in fnames:
if fname_is_c(fname):
rules.applyToFile(os.path.join(dirpath,fname))
for fname in fnames:
if fname_is_c(fname):
rules.applyToFile(os.path.join(dirpath,fname))
if trouble:
err(
......
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