Skip to content

Commit

Permalink
--verbose flag was not working. Here is bugfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dair-targ committed Jun 2, 2012
1 parent 3d11042 commit 70b3658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpie/httpmessage.py
Expand Up @@ -25,7 +25,7 @@ def from_request(request):
headers='\n'.join(str('%s: %s') % (name, value)
for name, value
in request_headers.items()),
body=request._enc_data,
body=request.data,
content_type=request_headers.get('Content-Type')
)

Expand Down

0 comments on commit 70b3658

Please sign in to comment.