use a tuple instead of set

Change-Id: I46130f4363de7d2f4310870d89b32294942060f2
This commit is contained in:
Doug Hellmann 2014-07-08 07:34:49 -07:00
parent f6d792ace4
commit 5d38c403b0
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
"""
# Special values for dispatching
WILDCARDS = {'*', 'error'}
WILDCARDS = ('*', 'error')
# Dump debugging details about the worker processes and threads
WORKERS_DEBUG = 'workers-debug'