Skip to content

Commit

Permalink
fix missing black params
Browse files Browse the repository at this point in the history
  • Loading branch information
willforde committed Oct 14, 2018
1 parent 37e9042 commit a1ecb0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script.module.codequick/lib/urlquick.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def _ascii_query(query, params):
"""Make sure that query is urlencoded and ascii compatible."""
if query:
# Ensure that query contains only valid characters
qsl = parse_qsl(query)
qsl = parse_qsl(query, keep_blank_values=True)
# noinspection PyTypeChecker
query = urlencode(qsl)

Expand Down

0 comments on commit a1ecb0e

Please sign in to comment.