Skip to content

Commit a88ecc0

Browse files
committed
It's go time!
1 parent 4ede55b commit a88ecc0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pythonkc_site/urls.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,14 @@
44
from django.conf.urls.defaults import include
55
from django.conf.urls.defaults import patterns
66
from django.conf.urls.defaults import url
7-
from django.views.decorators.cache import cache_page
8-
from pythonkc_site.views import PythonKCComingSoon
97
from pythonkc_site.views import PythonKCHome
108

119
# Uncomment the next two lines to enable the admin:
1210
# from django.contrib import admin
1311
# admin.autodiscover()
1412

1513
urlpatterns = patterns('',
16-
17-
url(r'^/?$', cache_page(60*60*24)(PythonKCComingSoon.as_view())),
18-
url(r'^demo/?$', PythonKCHome.as_view(), name='home'),
14+
url(r'^/?$', PythonKCHome.as_view(), name='home'),
1915

2016
# Examples:
2117
# url(r'^$', 'pythonkc_site.views.home', name='home'),

0 commit comments

Comments
 (0)