diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-08-01 23:15:57 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-08-01 23:15:57 +0200 |
commit | 422c6de6cc9d321a51d12434ad41a2f4f4710f0a (patch) | |
tree | 68b0bac2731dd93718ed7261d3da46f5376ebdc4 | |
parent | e8f836425a64a786f0d68c6b2a0b682e7cf6e00a (diff) | |
download | mitmproxy-422c6de6cc9d321a51d12434ad41a2f4f4710f0a.tar.gz mitmproxy-422c6de6cc9d321a51d12434ad41a2f4f4710f0a.tar.bz2 mitmproxy-422c6de6cc9d321a51d12434ad41a2f4f4710f0a.zip |
fix mitmproxy invocation
-rw-r--r-- | mitmproxy/tools/console/master.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/master.py b/mitmproxy/tools/console/master.py index ef3ab0b3..0d9dee9b 100644 --- a/mitmproxy/tools/console/master.py +++ b/mitmproxy/tools/console/master.py @@ -59,7 +59,7 @@ class ConsoleMaster(master.Master): self.window = None def __setattr__(self, name, value): - self.__dict__[name] = value + super().__setattr__(name, value) signals.update_settings.send(self) def options_error(self, opts, exc): |