Remove debug _raw entry from output

This commit is contained in:
Louis-Philippe Huberdeau 2017-06-29 09:00:02 -04:00
parent fae965f8b6
commit dd19527e9c

View File

@ -112,7 +112,6 @@ class Request:
"url": self.url,
"headers": [dict(name=key, value=value) for key, value in self.headers.items()],
"comment": self.comment,
"_raw": self.raw,
}
if self.postBody:
contentType = self.headers.get('Content-Type')
@ -172,7 +171,6 @@ class Response:
"text": base64.b64encode(self.content),
},
"comment": self.comment,
"_raw": self.raw,
}