commit 430308b72c52f3f01c13148249190a9a2d781144 Author: Sebastian Hahn sebastian@torproject.org Date: Thu Sep 15 14:36:03 2016 +0200
fix typo, thanks arma --- src/sanitize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sanitize.py b/src/sanitize.py index 9fae32c..36cd210 100755 --- a/src/sanitize.py +++ b/src/sanitize.py @@ -58,7 +58,7 @@ with open(yesterday_fname, 'a') as file_old: for line in fileinput.input(sys.argv[1]): matched = is_valid_regex.match(line) if matched is None: - #print(line, "Last line does not match critera", file=sys.stderr) + #print(line, "Last line does not match criteria", file=sys.stderr) continue date = dateutil.parser.parse(matched.group(2)) if today != date and day_before != date:
tor-commits@lists.torproject.org