X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/e5f6a07c729bde884f6de784d925f44fb652acf5..c8a9f4983b1e6247bbb17d69257f144fafb4e646:/linaro_django_pagination/test_project/urls.py diff --git a/linaro_django_pagination/test_project/urls.py b/linaro_django_pagination/test_project/urls.py index 734ebb5..fe86f74 100644 --- a/linaro_django_pagination/test_project/urls.py +++ b/linaro_django_pagination/test_project/urls.py @@ -1,4 +1,4 @@ -# Copyright (C) 2010, 2011 Linaro Limited +# Copyright (c) 2010, 2011 Linaro Limited # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -31,6 +31,8 @@ from django.conf.urls.defaults import ( patterns, url, include, handler500, handler404) - # Empty patterns so that test project can be started and would work normally -urlpatterns = patterns('',) +urlpatterns = patterns( + '', + url('', include('example.urls')), +)