Fixed typo in docs/topics/forms/modelforms.txt

This commit is contained in:
SaeX 2015-03-28 11:06:40 +01:00 committed by Tim Graham
parent c2bfd76ec3
commit 19e41a9799
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ specifying an ``initial`` parameter when instantiating the form. Initial
values provided this way will override both initial values from the form field
and values from an attached model instance. For example::
>>> article = Article.objects.get(pk1=)
>>> article = Article.objects.get(pk=1)
>>> article.headline
'My headline'
>>> form = ArticleForm(initial={'headline': 'Initial headline'), instance=article)