Fix invalid py2 syntax

This commit is contained in:
Andrew Godwin 2015-07-12 23:37:43 -05:00
parent 8492dcde48
commit 3a4847887e

View File

@ -5,7 +5,7 @@ from django.utils import six
from channels import channel_backends, DEFAULT_CHANNEL_BACKEND from channels import channel_backends, DEFAULT_CHANNEL_BACKEND
def consumer(self, *channels, alias=DEFAULT_CHANNEL_BACKEND): def consumer(self, alias=DEFAULT_CHANNEL_BACKEND, *channels):
""" """
Decorator that registers a function as a consumer. Decorator that registers a function as a consumer.
""" """