From 05d26756d7e7f254d5631a0649aeac5fd3a58ca8 Mon Sep 17 00:00:00 2001 From: Nate Case Date: Sat, 23 Aug 2008 11:03:18 +0800 Subject: In some places tabs are used instead of spaces for indentation, even when other lines of a method are indented with spaces. This gets rid of all tabs and uses spaces everywhere. [Reworked to apply on newer code by Jeremy] Signed-off-by: Nate Case Signed-off-by: Jeremy Kerr --- apps/urls.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps/urls.py') diff --git a/apps/urls.py b/apps/urls.py index 1a6f94b..6e7f34e 100644 --- a/apps/urls.py +++ b/apps/urls.py @@ -31,8 +31,8 @@ urlpatterns = patterns('', # override the default registration form url(r'^accounts/register/$', register, - {'form_class': RegistrationForm, - 'profile_callback': userprofile_register_callback}, + {'form_class': RegistrationForm, + 'profile_callback': userprofile_register_callback}, name='registration_register'), (r'^accounts/', include('registration.urls')), @@ -41,9 +41,9 @@ urlpatterns = patterns('', (r'^admin/(.*)', admin_site.root), (r'^css/(?P.*)$', 'django.views.static.serve', - {'document_root': '/srv/patchwork/htdocs/css'}), + {'document_root': '/srv/patchwork/htdocs/css'}), (r'^js/(?P.*)$', 'django.views.static.serve', - {'document_root': '/srv/patchwork/htdocs/js'}), + {'document_root': '/srv/patchwork/htdocs/js'}), (r'^images/(?P.*)$', 'django.views.static.serve', - {'document_root': '/srv/patchwork/htdocs/images'}), + {'document_root': '/srv/patchwork/htdocs/images'}), ) -- cgit v1.2.3