Skip to content

Commit a442660

Browse files
committed
Merge pull request binarymatt#90 from christyor73/master
Allow one character long queues to be viewed in resweb
2 parents f917358 + 8f422ae commit a442660

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)