diff options
author | Aldo Cortesi <aldo@corte.si> | 2016-10-17 17:03:02 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-17 17:03:02 +1300 |
commit | ae3ff8ee1edc646e7a640219df1a312c27f7c339 (patch) | |
tree | 490697113ceaf12cc704c418357139e60a0190f3 /pathod/log.py | |
parent | 3fbce7e981cab5d20b3ef17a50f14b34e8c60fa3 (diff) | |
parent | ce98a9219e060b729d4b0d2dc28bf4510649f0fd (diff) | |
download | mitmproxy-ae3ff8ee1edc646e7a640219df1a312c27f7c339.tar.gz mitmproxy-ae3ff8ee1edc646e7a640219df1a312c27f7c339.tar.bz2 mitmproxy-ae3ff8ee1edc646e7a640219df1a312c27f7c339.zip |
Merge pull request #1615 from cortesi/python3a
exterminate six
Diffstat (limited to 'pathod/log.py')
-rw-r--r-- | pathod/log.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/pathod/log.py b/pathod/log.py index 47837101..1a709dc6 100644 --- a/pathod/log.py +++ b/pathod/log.py @@ -1,7 +1,5 @@ import time -import six - from netlib import strutils, human @@ -52,7 +50,7 @@ class LogCtx(object): timestamp = self.timestamp ) if exc_value: - six.reraise(exc_type, exc_value, traceback) + raise exc_value def suppress(self): self.suppressed = True |