Skip to content

Commit 8f422ae

Browse files
author
Christy O'Reilly
committed
Allow one character long queues to be viewed in resweb
1 parent f917358 commit 8f422ae

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
@@ -33,7 +33,7 @@ def working(request):
3333
def queues(request):
3434
return Queues(HOST).render().encode('utf-8')
3535

36-
@get('/queues/(?P<queue_id>\w.+)/')
36+
@get('/queues/(?P<queue_id>\w.*)/')
3737
def queue(request, queue_id):
3838
start = int(request.GET.get('start',0))
3939
return Queue(HOST, queue_id, start).render().encode('utf-8')

0 commit comments

Comments
 (0)