From 56c375d46010e6f5a1a9aa9a2ab251f547bf19c9 Mon Sep 17 00:00:00 2001 From: John Leith Date: Wed, 14 Oct 2015 08:20:23 -0600 Subject: [PATCH] keeping the parent class signature --- channels/request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/channels/request.py b/channels/request.py index 1c975ef..0d34c37 100644 --- a/channels/request.py +++ b/channels/request.py @@ -43,5 +43,6 @@ class CustomQueryDict(QueryDict): Custom override of QueryDict that sets things directly. """ - def __init__(self, values): + def __init__(self, values, mutable=False, encoding=None): + """ mutable and encoding are ignored :( """ MultiValueDict.__init__(self, values)