From 2e3e39cd6c85a95db495c09b80a177512de182ed Mon Sep 17 00:00:00 2001 From: Vikalp Jain Date: Thu, 23 Jun 2016 01:31:39 +0530 Subject: [PATCH] Update handler.py (#217) Remove unnecessary comment --- channels/handler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/channels/handler.py b/channels/handler.py index 37793bf..ee9e150 100644 --- a/channels/handler.py +++ b/channels/handler.py @@ -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):