1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #29627 -- Fixed QueryDict.urlencode() crash with non-string values.

Regression in 7d96f0c49a.
This commit is contained in:
Tim Graham
2018-08-02 21:56:26 -04:00
committed by GitHub
parent 2e3ba9f592
commit d8e2be459f
3 changed files with 11 additions and 1 deletions

View File

@@ -11,3 +11,6 @@ Bugfixes
* Fixed a race condition in ``QuerySet.update_or_create()`` that could result
in data loss (:ticket:`29499`).
* Fixed a regression where ``QueryDict.urlencode()`` crashed if the dictionary
contains a non-string value (:ticket:`29627`).