Update handler.py (#217)

Remove unnecessary comment
This commit is contained in:
Vikalp Jain 2016-06-23 01:31:39 +05:30 committed by Andrew Godwin
parent ade39b218c
commit 2e3e39cd6c

View File

@ -135,8 +135,6 @@ class AsgiRequest(http.HttpRequest):
@cached_property
def GET(self):
# Django will try and re-urldecode the query string and interpret + as space;
# we re-encode it here to fix this.
return http.QueryDict(self.message.get('query_string', ''))
def _get_post(self):