diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2017-02-24 15:42:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 15:42:52 +0100 |
commit | 83f1e2eec01ab3edec723b252b0c109f00b77c56 (patch) | |
tree | 9222f639c50e252339378e8c881474274adc8ae4 /mitmproxy/tools/web/master.py | |
parent | d0d11cec7b479932668eb4e7c99d7824018d0460 (diff) | |
parent | fab3a8dcf4d7cdce55099172e45a6a0978eac4ab (diff) | |
download | mitmproxy-83f1e2eec01ab3edec723b252b0c109f00b77c56.tar.gz mitmproxy-83f1e2eec01ab3edec723b252b0c109f00b77c56.tar.bz2 mitmproxy-83f1e2eec01ab3edec723b252b0c109f00b77c56.zip |
Merge pull request #2050 from Kriechi/create_connection
nuke tcp.Address and add proper IPv6 support
Diffstat (limited to 'mitmproxy/tools/web/master.py')
-rw-r--r-- | mitmproxy/tools/web/master.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/web/master.py b/mitmproxy/tools/web/master.py index 6ebcfe47..8c7f579d 100644 --- a/mitmproxy/tools/web/master.py +++ b/mitmproxy/tools/web/master.py @@ -109,7 +109,7 @@ class WebMaster(master.Master): tornado.ioloop.PeriodicCallback(lambda: self.tick(timeout=0), 5).start() self.add_log( - "Proxy server listening at http://{}/".format(self.server.address), + "Proxy server listening at http://{}:{}/".format(self.server.address[0], self.server.address[1]), "info" ) |