diff options
-rw-r--r-- | mitmproxy/controller.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mitmproxy/controller.py b/mitmproxy/controller.py index 8b968eb5..2f0c8bf2 100644 --- a/mitmproxy/controller.py +++ b/mitmproxy/controller.py @@ -197,9 +197,7 @@ def handler(f): with master.handlecontext(): ret = f(master, message) if handling: - # Python2/3 compatibility hack - fn = getattr(f, "func_name", None) or getattr(f, "__name__") - master.addons(fn, message) + master.addons(f.__name__, message) if handling and not message.reply.acked and not message.reply.taken: message.reply.ack() |