diff options
author | Henrique M. D <typoon@gmail.com> | 2019-11-15 13:59:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 13:59:57 -0500 |
commit | 021a14152125ee13657eea772fe3460b478ea099 (patch) | |
tree | 83794f1b3bafbcd7862300b5463dac27e43ff358 /pathod/test.py | |
parent | 8972250167cfd55dcfcb93b2d3d7b33e0546629d (diff) | |
parent | 698f7e2e177baf313e6af62ec0f79a26693e430b (diff) | |
download | mitmproxy-021a14152125ee13657eea772fe3460b478ea099.tar.gz mitmproxy-021a14152125ee13657eea772fe3460b478ea099.tar.bz2 mitmproxy-021a14152125ee13657eea772fe3460b478ea099.zip |
Merge branch 'master' into fix-command-bar-issue-3259
Diffstat (limited to 'pathod/test.py')
-rw-r--r-- | pathod/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/test.py b/pathod/test.py index e8c3c84a..b6e5e4d0 100644 --- a/pathod/test.py +++ b/pathod/test.py @@ -25,7 +25,7 @@ class Daemon: def __enter__(self): return self - def __exit__(self, type, value, traceback) -> bool: + def __exit__(self, type, value, traceback): self.logfp.truncate(0) self.shutdown() return False |