commit 3b4a360ed0decaf7285c825cfab7712d6d5ebb37
parent b2b61b0268f5ddac347b5487ea677a7202b95c50
Author: teor <teor@torproject.org>
Date: Thu, 14 Nov 2019 16:12:19 +1000
practracker: Don't read editor temp files, attempt 2
(Or any files that start with "." or "#".)
Obviously correct changes to already-reviewed code.
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/scripts/maint/practracker/util.py b/scripts/maint/practracker/util.py
@@ -33,10 +33,13 @@ 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
+ if filename in EXCLUDE_FILES:
+ continue
# Avoid editor temporary files
- if filename.startswith("."):
+ bname = os.path.basename(filename)
+ if bname.startswith("."):
continue
- if filename in EXCLUDE_FILES:
+ if bname.startswith("#"):
continue
full_path = os.path.join(root,filename)