From: teor Date: Thu, 14 Nov 2019 06:12:19 +0000 (+1000) Subject: practracker: Don't read editor temp files, attempt 2 X-Git-Tag: tor-0.4.3.1-alpha~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b4a360ed0decaf7285c825cfab7712d6d5ebb37;p=thirdparty%2Ftor.git practracker: Don't read editor temp files, attempt 2 (Or any files that start with "." or "#".) Obviously correct changes to already-reviewed code. --- diff --git a/scripts/maint/practracker/util.py b/scripts/maint/practracker/util.py index c38e4c8dd0..db02a983f8 100644 --- 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)