diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-02-08 22:42:27 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-02-08 22:42:27 +0100 |
commit | 0c04abb6e4c549646c06ef9e270d1b42c1ffaf1d (patch) | |
tree | 9824b52c89962be6e131e59ab170de5dd801ce0c /pathod | |
parent | 505d3964952d0fa0779eda5c61a0456f4f2f6fb9 (diff) | |
download | mitmproxy-0c04abb6e4c549646c06ef9e270d1b42c1ffaf1d.tar.gz mitmproxy-0c04abb6e4c549646c06ef9e270d1b42c1ffaf1d.tar.bz2 mitmproxy-0c04abb6e4c549646c06ef9e270d1b42c1ffaf1d.zip |
fix pathod main script
Diffstat (limited to 'pathod')
-rwxr-xr-x | pathod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ def main(parser, args): parser.error("%s You probably want to a -d argument."%str(v)) try: - print "%s listening on %s:%s"%(version.NAMEVERSION, args.address, pd.port) + print "%s listening on %s:%s"%(version.NAMEVERSION, args.address, pd.address.port) pd.serve_forever() except KeyboardInterrupt: pass |