Practracker: do not list problems when told to --list-overbroad.

This commit is contained in:
Nick Mathewson
2019-09-18 08:49:57 -04:00
parent d6d3e829dd
commit 25d55fa01e
2 changed files with 16 additions and 0 deletions
+7
View File
@@ -41,3 +41,10 @@ def get_tor_c_files(tor_topdir, include_dirs=None):
files_list.append(full_path)
return files_list
class NullFile:
"""A file-like object that we can us to suppress output."""
def __init__(self):
pass
def write(self, s):
pass