From 71615dbc7079f365f509478bf2e5e46f3a9d1bfa Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 28 Aug 2008 12:49:11 +0000 Subject: [PATCH] Fixed #8531: Corrected a typo in a sample YAML fixture. Thanks to amiroff for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8657 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/initial-data.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt index 871c5e8fa1..b6e8a81e6a 100644 --- a/docs/howto/initial-data.txt +++ b/docs/howto/initial-data.txt @@ -60,7 +60,7 @@ And here's that same fixture as YAML: first_name: John last_name: Lennon - model: myapp.person - pk: 1 + pk: 2 fields: first_name: Paul last_name: McCartney