fnp
/
django-pagination.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Ignore test project database
[django-pagination.git]
/
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
..
06f3e77
100644
(file)
--- a/
linaro_django_pagination/test_project/urls.py
+++ b/
linaro_django_pagination/test_project/urls.py
@@
-31,6
+31,8
@@
from django.conf.urls.defaults import (
patterns, url, include, handler500, handler404)
from django.conf.urls.defaults import (
patterns, url, include, handler500, handler404)
-
# Empty patterns so that test project can be started and would work normally
# Empty patterns so that test project can be started and would work normally
-urlpatterns = patterns('',)
+urlpatterns = patterns(
+ '',
+ url('', include('example.urls')),
+)