From a488a3adfe4f5869405cc7df28e2ddf2699a99f8 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Tue, 23 Jun 2015 17:50:56 +0200 Subject: [PATCH] Fixed docstring typo in ResponseLater doown => down --- channels/response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/response.py b/channels/response.py index e790250..22d410a 100644 --- a/channels/response.py +++ b/channels/response.py @@ -31,7 +31,7 @@ def decode_response(value): class ResponseLater(Exception): """ - Class that represents a response which will be sent doown the response + Class that represents a response which will be sent down the response channel later. Used to move a django view-based segment onto the next task, as otherwise we'd need to write some kind of fake response. """