# HG changeset patch # User Brian Neal # Date 1260134700 0 # Node ID f6904149a2330d5bad676229769e52549ea40840 # Parent 861f7d5f1b2355df92fd8b5dcfb2c97e78399c37 Forgot to add this file in r137. diff -r 861f7d5f1b23 -r f6904149a233 gpp/core/urls.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/core/urls.py Sun Dec 06 21:25:00 2009 +0000 @@ -0,0 +1,8 @@ +""" +Urls for the core application. +""" +from django.conf.urls.defaults import * + +urlpatterns = patterns('core.views', + url(r'^markdown_help/$', 'markdown_help', name='core-markdown_help'), +)