Skip to content

Commit

Permalink
Removes old "core" from urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tedtieken committed May 18, 2013
1 parent f50d889 commit 21f63d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from mezzanine.core.views import direct_to_template

from apps.core.views import ClassyDummyView
from apps.cities.views import ClassyDummyView

admin.autodiscover()

Expand Down Expand Up @@ -44,7 +44,7 @@
# purposes of just creating a template, it's fine to use one of the two
# methods above, but once you start making the template do stuff, you'll
# want to use a custom view.
url("^dummy3/$", "apps.core.views.functional_dummy_view", name="dummy3"),
url("^dummy3/$", "apps.cities.views.functional_dummy_view", name="dummy3"),
url("^dummy4/$", ClassyDummyView.as_view(), name="dummy4"),


Expand Down

0 comments on commit 21f63d7

Please sign in to comment.