diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-03-20 23:22:50 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-03-20 23:22:50 +0100 |
commit | 403ac82a7d07f08e931aedde4cbe4289b09d60ec (patch) | |
tree | 766e498ef6b0d98746778531fc43ae1bee0cdab9 /netlib/http | |
parent | e7395170701aadfab2ed1097a2e34497241ba2fa (diff) | |
download | mitmproxy-403ac82a7d07f08e931aedde4cbe4289b09d60ec.tar.gz mitmproxy-403ac82a7d07f08e931aedde4cbe4289b09d60ec.tar.bz2 mitmproxy-403ac82a7d07f08e931aedde4cbe4289b09d60ec.zip |
netlib: request.path can be None
Diffstat (limited to 'netlib/http')
-rw-r--r-- | netlib/http/request.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/netlib/http/request.py b/netlib/http/request.py index 99662732..1a9b6f18 100644 --- a/netlib/http/request.py +++ b/netlib/http/request.py @@ -147,7 +147,10 @@ class Request(Message): HTTP request path, e.g. "/index.html". Guaranteed to start with a slash. """ - return _native(self.data.path) + if self.data.path is None: + return None + else: + return _native(self.data.path) @path.setter def path(self, path): |