Skip to content

Commit

Permalink
Fix: Python3.10 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 14, 2024
1 parent 987fead commit bf87a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_form_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def wsgi_application(environ, start_response):
form = parse_qs(
fp.read(int(environ.get('CONTENT_LENGTH', 0))).decode(),
keep_blank_values=True,
strict_parsing=True
strict_parsing=False
)

start_response('200 OK', [
Expand Down

0 comments on commit bf87a07

Please sign in to comment.