Skip to content

Commit

Permalink
Merge pull request #23 from freakypie/querydict-params
Browse files Browse the repository at this point in the history
keeping the parent class signature
  • Loading branch information
andrewgodwin committed Oct 14, 2015
2 parents ab2f1df + 56c375d commit 3ea2799
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion channels/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 3ea2799

Please sign in to comment.