From dd19527e9cbda0eb6901736a25a08a0f57cd19e6 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Huberdeau Date: Thu, 29 Jun 2017 09:00:02 -0400 Subject: [PATCH] Remove debug _raw entry from output --- lib/utils/collect.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/utils/collect.py b/lib/utils/collect.py index 7cb328883..b88ef4111 100644 --- a/lib/utils/collect.py +++ b/lib/utils/collect.py @@ -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, }