diff --git a/libmproxy/filt.py b/libmproxy/filt.py index 937cc29d1..4314f2d59 100644 --- a/libmproxy/filt.py +++ b/libmproxy/filt.py @@ -33,6 +33,7 @@ ~bq rex Expression in the body of response ~t rex Shortcut for content-type header. + ~d rex Request domain ~m rex Method ~u rex URL ~c CODE Response code. @@ -114,7 +115,7 @@ class FRequestContentType(_Rex): class FResponseContentType(_Rex): code = "ts" - help = "Request Content-Type header" + help = "Response Content-Type header" def __call__(self, f): if f.response: return _check_content_type(self.expr, f.response)