summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorAdolfo Fitoria <fitoria@fitoria-laptop.(none)>2009-10-13 11:16:02 -0600
committerAdolfo Fitoria <fitoria@fitoria-laptop.(none)>2009-10-13 11:16:02 -0600
commitb7f549bcd89c1f29757a91c54e2ef4e175a31d1c (patch)
treef540100d0546ed6031d01465f27bede2c424ff67 /urls.py
parent9dbe90c68d6503ad8a1dae8d7f8e75cbcf7b721b (diff)
downloadaskbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.tar.gz
askbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.tar.bz2
askbot-b7f549bcd89c1f29757a91c54e2ef4e175a31d1c.zip
removing categories feature from master
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/urls.py b/urls.py
index b3ac9cb8..0001a881 100644
--- a/urls.py
+++ b/urls.py
@@ -67,6 +67,4 @@ urlpatterns = patterns('',
url(r'^%s%s(?P<short_name>[^/]+)/$' % (_('books/'), _('ask/')), app.ask_book, name='ask_book'),
url(r'^%s(?P<short_name>[^/]+)/$' % _('books/'), app.book, name='book'),
url(r'^%s$' % _('search/'), app.search, name='search'),
- (r'^categorias/$', app.categories),
- (r'^categorias/(?P<category>[^/]+)/$', app.category),
)