commit 18e09913bf23253645404612726983c5c43e19cc
parent 68befa3b84080fcbf4face0fa39afedae9f3223d
Author: teor <teor@torproject.org>
Date: Mon, 28 Oct 2019 13:09:58 +1000
practracker: Don't read editor temp files
(Or any dot files.)
Obviously correct changes to already-reviewed code.
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/scripts/maint/practracker/util.py b/scripts/maint/practracker/util.py
@@ -33,6 +33,9 @@ def get_tor_c_files(tor_topdir, include_dirs=None):
# We only care about .c and .h files
if not (filename.endswith(".c") or filename.endswith(".h")):
continue
+ # Avoid editor temporary files
+ if filename.startswith("."):
+ continue
if filename in EXCLUDE_FILES:
continue