Skip to content

Commit ccf4123

Browse files
mjrussoMatt George
authored andcommitted
can now view status of queues with '.' in the name via the web interface
1 parent de677af commit ccf4123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resweb/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def working(request):
3030
def queues(request):
3131
return str(Queues(HOST).render())
3232

33-
@get('/queues/(?P<queue_id>\w+)/')
33+
@get('/queues/(?P<queue_id>\w.+)/')
3434
def queue(request, queue_id):
3535
start = int(request.GET.get('start',0))
3636
return str(Queue(HOST, queue_id, start).render())

0 commit comments

Comments
 (0)