diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-06-19 16:57:57 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-06-19 16:57:57 +1200 |
commit | 892ee2a9041166ca4ae1e35893174791b96cccfa (patch) | |
tree | 25008c40584a09c70457716934e4defecf0251d8 /pathod | |
parent | a700721891e028aacc867001a715a8f7d9cbf223 (diff) | |
download | mitmproxy-892ee2a9041166ca4ae1e35893174791b96cccfa.tar.gz mitmproxy-892ee2a9041166ca4ae1e35893174791b96cccfa.tar.bz2 mitmproxy-892ee2a9041166ca4ae1e35893174791b96cccfa.zip |
Start porting web app to Flask.
Diffstat (limited to 'pathod')
-rwxr-xr-x | pathod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/usr/bin/env python from libpathod import pathod -s = pathod.PathodServer(("127.0.0.1", 8888)) +s = pathod.Pathod(("127.0.0.1", 8888)) s.serve_forever() |