From e3a30f2d16d65e7f0b870e997e92425a2f795587 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Freitag?= <mail@franek.fr>
Date: Mon, 9 Oct 2017 08:46:07 -0400
Subject: [PATCH] Refs #23919 -- Corrected django.utils.http.urlencode()'s
 documented signature.

Follow up to fee42fd99ee470528858c2ccb3621135c30ec262.
---
 docs/ref/utils.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index f74e1639a2..9112cd4ff9 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -675,7 +675,7 @@ escaping HTML.
 .. module:: django.utils.http
    :synopsis: HTTP helper functions. (URL encoding, cookie handling, ...)
 
-.. function:: urlencode(query, doseq=0)
+.. function:: urlencode(query, doseq=False)
 
     A version of Python's :func:`urllib.parse.urlencode` function that can
     operate on ``MultiValueDict`` and non-string values.