Use lowercase (c) for copyright
[django-pagination.git] / linaro_django_pagination / test_project / urls.py
index 734ebb5..fe86f74 100644 (file)
@@ -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')),
+)