From c6f104f27471cbdaacca9dd758775ebb1404c676 Mon Sep 17 00:00:00 2001 From: AlexejStukov Date: Wed, 20 Jul 2016 18:14:59 +0200 Subject: [PATCH] route was missing in import --- docs/binding.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/binding.rst b/docs/binding.rst index 6bdfdea..3a535b4 100644 --- a/docs/binding.rst +++ b/docs/binding.rst @@ -116,7 +116,7 @@ our fixed group name again. Tie that into your routing, and tie each demultiplexed channel into the ``.consumer`` attribute of the Binding, and you're ready to go:: - from channels import route_class + from channels import route_class, route from .consumers import Demultiplexer from .models import IntegerValueBinding