We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I modify model_factory.py and it worked. diff model_factory.py /tmp/old.py 76,80c76 < try: < raw_body = self.request.body.decode("UTF-8") < except Exception: < pass
raw_body = self.request.body
The text was updated successfully, but these errors were encountered:
Good catch! It looks like I already thought of this for the response body:
content = content.decode('UTF-8')
But missed request bodies.
Feel free to form a pull request, otherwise I'll add this in myself before the next release (which is very soon)
Sorry, something went wrong.
Fixed in new version.
Merge pull request jazzband#19 from 15five/update-readme
5a6fe06
Update readme
No branches or pull requests
I modify model_factory.py and it worked.
diff model_factory.py /tmp/old.py
76,80c76
< try:
< raw_body = self.request.body.decode("UTF-8")
< except Exception:
< pass
<
The text was updated successfully, but these errors were encountered: