summaryrefslogtreecommitdiffstats
path: root/pyc/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyc/urls.py')
-rw-r--r--pyc/urls.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/pyc/urls.py b/pyc/urls.py
index f2c644f..273f18a 100644
--- a/pyc/urls.py
+++ b/pyc/urls.py
@@ -1,8 +1,7 @@
from django.conf.urls.defaults import patterns, include, url
-# Uncomment the next two lines to enable the admin:
-# from django.contrib import admin
-# admin.autodiscover()
+from django.contrib import admin
+admin.autodiscover()
urlpatterns = patterns('',
# Examples:
@@ -12,6 +11,5 @@ urlpatterns = patterns('',
# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
- # Uncomment the next line to enable the admin:
- # url(r'^admin/', include(admin.site.urls)),
+ url(r'^admin/', include(admin.site.urls)),
)