diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-08-22 21:01:24 -0700 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-08-22 21:01:24 -0700 |
commit | 798ce96bd0d22b642f8508c5d9a8e131bedb4896 (patch) | |
tree | 2282dfab2f593836b41e7b849319d849dd667f83 | |
parent | 53ccbaf4f50d6876e1f4d44acdac2268b3d75233 (diff) | |
download | mitmproxy-798ce96bd0d22b642f8508c5d9a8e131bedb4896.tar.gz mitmproxy-798ce96bd0d22b642f8508c5d9a8e131bedb4896.tar.bz2 mitmproxy-798ce96bd0d22b642f8508c5d9a8e131bedb4896.zip |
remove redundant property
-rw-r--r-- | mitmproxy/controller.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mitmproxy/controller.py b/mitmproxy/controller.py index 72374f31..c262b192 100644 --- a/mitmproxy/controller.py +++ b/mitmproxy/controller.py @@ -275,10 +275,6 @@ class Reply(object): def has_message(self): return self.value != NO_REPLY - @property - def done(self): - return self.state == "committed" - def handle(self): """ Reply are handled by controller.handlers, which may be nested. The first handler takes |