diff --git a/src/v20/response.py b/src/v20/response.py index c10db73..ac80540 100644 --- a/src/v20/response.py +++ b/src/v20/response.py @@ -62,4 +62,8 @@ def __str__(self): s += "Status = {}\n".format(self.status) s += "Reason = {}\n".format(self.reason) s += "Content-Type = {}\n".format(self.content_type) + s += "Raw_Body = {}\n".format(self.raw_body) return s + + def __repr__(self): + return str(self)