From 23c4569564cd08c201267cb6887bb98545279968 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sat, 29 Aug 2009 15:21:52 +0200 Subject: [PATCH] fix typo in the texture url... --- pyweb/mumble/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/urls.py b/pyweb/mumble/urls.py index a566ce8..fea6e82 100644 --- a/pyweb/mumble/urls.py +++ b/pyweb/mumble/urls.py @@ -20,7 +20,7 @@ urlpatterns = patterns( 'mumble.views', ( r'djangousers', 'djangousers' ), ( r'(?P\d+)/users', 'users' ), - ( r'(?P\d+)/(?P\d+)texture.png', 'showTexture' ), + ( r'(?P\d+)/(?P\d+)/texture.png', 'showTexture' ), ( r'(?P\d+)/texture.png', 'showTexture' ), ( r'(?P\d+)', 'show' ), ( r'$', 'mumbles' ),