From d38f7f3ef7ab803a8b9babda8f6be989f378429e Mon Sep 17 00:00:00 2001 From: "tom christie tom@tomchristie.com" Date: Wed, 26 Jan 2011 21:09:08 +0000 Subject: [PATCH] Fix broken merge --- examples/urls.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/examples/urls.py b/examples/urls.py index 62001016c..ef55e2b56 100644 --- a/examples/urls.py +++ b/examples/urls.py @@ -4,15 +4,9 @@ from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', -<<<<<<< local - (r'^blog-post-api/', include('blogpost.urls')), - (r'^object-store-api/', include('objectstore.urls')), - (r'^pygments-api/', include('pygments_api.urls')), -======= - (r'pygments-example/', include('pygmentsapi.urls')), + (r'pygments-example/', include('pygments_api.urls')), (r'^blog-post-example/', include('blogpost.urls')), (r'^object-store-example/', include('objectstore.urls')), ->>>>>>> other (r'^admin/doc/', include('django.contrib.admindocs.urls')), (r'^admin/', include(admin.site.urls)), )