diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-06-26 15:09:05 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-06-26 15:09:05 +1200 |
commit | 65aef81997be86344acd78c475ad3d8936407324 (patch) | |
tree | c5afc38bbf916c3b46b6b9e96776ad7225d8a566 /libpathod | |
parent | 33be5a72bf1dccd52f087f7759d6bb3650274354 (diff) | |
download | mitmproxy-65aef81997be86344acd78c475ad3d8936407324.tar.gz mitmproxy-65aef81997be86344acd78c475ad3d8936407324.tar.bz2 mitmproxy-65aef81997be86344acd78c475ad3d8936407324.zip |
parse -> parse_response in web app
Diffstat (limited to 'libpathod')
-rw-r--r-- | libpathod/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/app.py b/libpathod/app.py index 406325a1..a4d6a0c5 100644 --- a/libpathod/app.py +++ b/libpathod/app.py @@ -58,7 +58,7 @@ def preview(): error = None ) try: - r = rparse.parse(app.config["pathod"].request_settings, spec) + r = rparse.parse_response(app.config["pathod"].request_settings, spec) except rparse.ParseException, v: args["syntaxerror"] = str(v) args["marked"] = v.marked() |