summaryrefslogtreecommitdiff
path: root/django/contrib/formtools
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/formtools')
-rw-r--r--django/contrib/formtools/tests/wizard/wizardtests/urls.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/django/contrib/formtools/tests/wizard/wizardtests/urls.py b/django/contrib/formtools/tests/wizard/wizardtests/urls.py
index dabce5306a..d2e7c575cc 100644
--- a/django/contrib/formtools/tests/wizard/wizardtests/urls.py
+++ b/django/contrib/formtools/tests/wizard/wizardtests/urls.py
@@ -13,10 +13,10 @@ urlpatterns = patterns('',
('form2', Page2),
('form3', Page3),
('form4', Page4)])),
- url(r'^wiz_other_template/$', CookieContactWizard.as_view(
- [('form1', Page1),
- ('form2', Page2),
- ('form3', Page3),
- ('form4', Page4)],
- template_name='other_wizard_form.html')),
+ url(r'^wiz_other_template/$', CookieContactWizard.as_view(
+ [('form1', Page1),
+ ('form2', Page2),
+ ('form3', Page3),
+ ('form4', Page4)],
+ template_name='other_wizard_form.html')),
)