Commit 94688065b9c4701027eba2f71af2d36e20c89e0c

Authored by Sergio Oliveira
1 parent eab32d09

Prefix should be in main urls.py instead of here

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/proxy/trac/urls.py
... ... @@ -6,5 +6,5 @@ from .views import TracProxyView
6 6  
7 7 urlpatterns = patterns('',
8 8 # Trac
9   - url(r'^trac/(?P<path>.*)$', TracProxyView.as_view()),
  9 + url(r'^(?P<path>.*)$', TracProxyView.as_view()),
10 10 )
... ...