From: teor Date: Mon, 28 Oct 2019 03:09:58 +0000 (+1000) Subject: practracker: Don't read editor temp files X-Git-Tag: tor-0.4.3.1-alpha~241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18e09913bf23253645404612726983c5c43e19cc;p=thirdparty%2Ftor.git practracker: Don't read editor temp files (Or any dot files.) Obviously correct changes to already-reviewed code. --- 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