Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
handle slashes in guids for compatibility reports (bug 817434)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvan committed Dec 13, 2012
1 parent e5a12ca commit 5130e88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/compat/urls.py
Expand Up @@ -6,8 +6,8 @@
urlpatterns = ( urlpatterns = (
url('^incoming/?$', views.incoming, name='compat.incoming'), url('^incoming/?$', views.incoming, name='compat.incoming'),
url('^reporter/?$', views.reporter, name='compat.reporter'), url('^reporter/?$', views.reporter, name='compat.reporter'),
url('^reporter/([^/]+)$', url('^reporter/(.+)$', views.reporter_detail,
views.reporter_detail, name='compat.reporter_detail'), name='compat.reporter_detail'),


url('^(?P<version>[.\w]+)?$', views.index, name='compat.index'), url('^(?P<version>[.\w]+)?$', views.index, name='compat.index'),
) )

0 comments on commit 5130e88

Please sign in to comment.