summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-12-11 18:21:18 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-12-11 18:21:18 -0500
commitf286e9560e63a776397494899673b103f92f3198 (patch)
tree0c2458d315e80f187d1d33c24fcc06cd780bfa77 /urls.py
parent3d122f711a481e2357d53ffee9e091a4581b8df6 (diff)
allow repo names to contain '~' in the router
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index bac7aee9..482564bd 100644
--- a/urls.py
+++ b/urls.py
@@ -31,7 +31,7 @@ feeds_patterns = patterns('',
(r'^packages/$', cache_page(300)(PackageFeed())),
(r'^packages/(?P<arch>[A-z0-9]+)/$',
cache_page(300)(PackageFeed())),
- (r'^packages/(?P<arch>[A-z0-9]+)/(?P<repo>[A-z0-9\-]+)/$',
+ (r'^packages/(?P<arch>[A-z0-9]+)/(?P<repo>[A-z0-9~\-]+)/$',
cache_page(300)(PackageFeed())),
)