diff options
author | Stephen Altamirano <stephen@evilrobotstuff.com> | 2011-07-21 20:22:13 -0700 |
---|---|---|
committer | Stephen Altamirano <stephen@evilrobotstuff.com> | 2011-07-21 20:22:13 -0700 |
commit | 74d8b18408783172ecdba5ec3947a4ecb590d70d (patch) | |
tree | 7efcffaf2ae2d5476413f9a95dc6f8435e7d252f /libmproxy/flow.py | |
parent | 5936a48e592b3f45b83dc76feab8bb8b5df81da1 (diff) | |
download | mitmproxy-74d8b18408783172ecdba5ec3947a4ecb590d70d.tar.gz mitmproxy-74d8b18408783172ecdba5ec3947a4ecb590d70d.tar.bz2 mitmproxy-74d8b18408783172ecdba5ec3947a4ecb590d70d.zip |
Removes should_autodecode attribute from Response. Adds commandline option 'd' to toggle autodecode, adds togglable option 'd' to do the same
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r-- | libmproxy/flow.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py index 568ec3d1..13b5acbc 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -454,6 +454,7 @@ class FlowMaster(controller.Master): self.anticache = False self.anticomp = False + self.autodecode = False self.refresh_server_playback = False def _runscript(self, f, script): |