summaryrefslogtreecommitdiff
path: root/kombu/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/common.py')
-rw-r--r--kombu/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/common.py b/kombu/common.py
index affebb5a..f86e01a6 100644
--- a/kombu/common.py
+++ b/kombu/common.py
@@ -87,7 +87,7 @@ class Broadcast(Queue):
def __init__(self, name=None, queue=None, auto_delete=True,
exchange=None, alias=None, **kwargs):
- queue = '{0}.{1}'.format(queue or 'bcast', uuid())
+ queue = queue or 'bcast.{0}'.format(uuid())
return super(Broadcast, self).__init__(
alias=alias or name,
queue=queue,