diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-05-31 18:12:39 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-05-31 18:12:39 +1200 |
commit | 2ebe994375976720e80e5fe011a56dda278da3d7 (patch) | |
tree | 5a384de98d29879d7491bd2c1274ea3943828b5c /libpathod/log.py | |
parent | effd29b51a3b54c2d346919bd09933fc6f440397 (diff) | |
download | mitmproxy-2ebe994375976720e80e5fe011a56dda278da3d7.tar.gz mitmproxy-2ebe994375976720e80e5fe011a56dda278da3d7.tar.bz2 mitmproxy-2ebe994375976720e80e5fe011a56dda278da3d7.zip |
logging: Re-raise exception after output
Diffstat (limited to 'libpathod/log.py')
-rw-r--r-- | libpathod/log.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpathod/log.py b/libpathod/log.py index c60a151c..8afb86eb 100644 --- a/libpathod/log.py +++ b/libpathod/log.py @@ -60,6 +60,8 @@ class Log: "\n" ] ) + if exc_value: + raise exc_value def suppress(self): self.suppressed = True |