1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Replaced yaml dump of Request object with plain dict dump

This commit is contained in:
Max Shytikov
2014-04-24 02:05:14 +02:00
parent 0408bdaadb
commit 1e995c3c9b
5 changed files with 14 additions and 36 deletions

View File

@@ -71,7 +71,7 @@ class Request(object):
'method': self.method,
'uri': self.uri,
'body': self.body,
'headers': self.headers,
'headers': dict(self.headers),
}
@classmethod