Skip to content

Commit

Permalink
publicimages url tuple issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimkal committed Jan 18, 2015
1 parent bb7e5b5 commit 83f8058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publicpages/urls.py
Expand Up @@ -7,6 +7,6 @@

url(r'^about/$',views.about, name="about"),
url(r'^$', views.current_datetime, name="home"),
url(r'^about/$',views.about, name="about"),
url(r'^(?P<slug>\w+|)',views.StaticPage.as_view(), name = "page")
#url(r'^about/$',views.about, name="about"),
url(r'^(?P<slug>\w+|)',views.StaticPage.as_view(), name = "page"),
)

0 comments on commit 83f8058

Please sign in to comment.