summaryrefslogtreecommitdiff
path: root/django/contrib/formtools/tests/wizard/wizardtests/urls.py
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-17 23:27:45 +0100
committerTim Graham <timograham@gmail.com>2013-10-17 20:20:11 -0400
commitdfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (patch)
tree4762099924f11873e9b6608e6f056939f16410b9 /django/contrib/formtools/tests/wizard/wizardtests/urls.py
parentd97bec5ee3a6284d30b613c9070588a60358e7ec (diff)
Fixed #21285 -- Fixed E121,E122 pep8 warnings
Diffstat (limited to 'django/contrib/formtools/tests/wizard/wizardtests/urls.py')
-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')),
)