Merge pull request #252 from jeanregisser/master

Fixed palette forced to light in mitmproxywrapper.py
This commit is contained in:
Maximilian Hils 2014-03-26 14:36:56 +01:00
commit cdc484d513

View File

@ -86,7 +86,6 @@ class Wrapper(object):
cmd = ['mitmproxy', '-p', str(self.port)]
if self.extra_arguments:
cmd.extend(self.extra_arguments)
cmd.extend(['--palette', 'light'])
subprocess.check_call(cmd)
def wrap_honeyproxy(self):