diff options
author | Nikhil Soni <krsoninikhil@gmail.com> | 2017-03-03 12:58:44 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-03 12:58:44 +0530 |
commit | 0081d9b82807b178bd6d00ca250d38aeeeed2d33 (patch) | |
tree | 8d244a7b9ade13f0e1836f8eb9fbc534a1cc662d /mitmproxy/tools/web/master.py | |
parent | 3da8532bed3305b01e3f3ab556f9dbc652177c6b (diff) | |
parent | bae4cdf8d5cc434938c74a041f762075513dd8e4 (diff) | |
download | mitmproxy-0081d9b82807b178bd6d00ca250d38aeeeed2d33.tar.gz mitmproxy-0081d9b82807b178bd6d00ca250d38aeeeed2d33.tar.bz2 mitmproxy-0081d9b82807b178bd6d00ca250d38aeeeed2d33.zip |
Merge branch 'master' into on-issues
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" ) |