remove leftovers

This commit is contained in:
Maximilian Hils 2015-02-07 00:36:47 +01:00
parent 65c14724f5
commit 102183fd23
2 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,6 @@ def _mkhelp():
("e", "edit request/response"), ("e", "edit request/response"),
("f", "load full body data"), ("f", "load full body data"),
("g", "copy response(content/headers) to clipboard"), ("g", "copy response(content/headers) to clipboard"),
("G", "copy request(content/headers/url) to clipboard"),
("m", "change body display mode for this entity"), ("m", "change body display mode for this entity"),
(None, (None,
common.highlight_key("automatic", "a") + common.highlight_key("automatic", "a") +

View File

@ -953,6 +953,7 @@ class HTTPFlow(Flow):
c += self.response.replace(pattern, repl, *args, **kwargs) c += self.response.replace(pattern, repl, *args, **kwargs)
return c return c
class HttpAuthenticationError(Exception): class HttpAuthenticationError(Exception):
def __init__(self, auth_headers=None): def __init__(self, auth_headers=None):
super(HttpAuthenticationError, self).__init__( super(HttpAuthenticationError, self).__init__(