From b05d2f51b806da184fb8c56619f4d275a3294bb5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sun, 19 Aug 2012 20:13:09 -0400 Subject: [PATCH] [1.4.X] Fixed typo in form wizard docs. Backport of 3631db88cb from master --- docs/ref/contrib/formtools/form-wizard.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index 7aafbe89f3..6f62bb0f95 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -528,7 +528,7 @@ We define our wizard in a ``views.py``:: We need to add the ``ContactWizard`` to our ``urls.py`` file:: - from django.conf.urls import pattern + from django.conf.urls import patterns from myapp.forms import ContactForm1, ContactForm2 from myapp.views import ContactWizard, show_message_form_condition