diff --git a/urls.py b/urls.py index ea8425e..8dafaec 100644 --- a/urls.py +++ b/urls.py @@ -27,3 +27,8 @@ if installed('reddit'): ('', include('reddit.urls')), ) +if installed('groups'): + urlpatterns += patterns('', + (r'^groups/', include('groups.urls')), + ) +