commit e32deb2994576cd1bfb83477da5d36b7991ef4d1 Author: Ana Custura ana@netstat.org.uk Date: Wed Jul 22 15:10:06 2020 +0100
Pass date_filter argument to parent analysis --- onionperf/analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/onionperf/analysis.py b/onionperf/analysis.py index e269f6a..898b165 100644 --- a/onionperf/analysis.py +++ b/onionperf/analysis.py @@ -34,7 +34,7 @@ class OPAnalysis(Analysis): return
self.date_filter = date_filter - super().analyze(do_complete=True) + super().analyze(do_complete=True, date_filter=self.date_filter) torctl_parser = TorCtlParser(date_filter=self.date_filter)
for (filepaths, parser, json_db_key) in [(self.torctl_filepaths, torctl_parser, 'tor')]:
tor-commits@lists.torproject.org