From 18e09913bf23253645404612726983c5c43e19cc Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 28 Oct 2019 13:09:58 +1000 Subject: [PATCH] practracker: Don't read editor temp files (Or any dot files.) Obviously correct changes to already-reviewed code. --- scripts/maint/practracker/util.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/maint/practracker/util.py b/scripts/maint/practracker/util.py index df629110c2..c38e4c8dd0 100644 --- 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