From 8ab2aceb6591e5e7c2f50e85a90ec85b42c5c16f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 11 Apr 2012 02:03:59 +0000 Subject: [PATCH] [1.4.X] Fixed #18099 -- corrected a typo in the initial data docs. Thanks to Bradley Ayers for the patch. Backport of f5a9e5e9 from master --- 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 36306d476e..295b74cf77 100644 --- a/docs/howto/initial-data.txt +++ b/docs/howto/initial-data.txt @@ -163,4 +163,4 @@ Backend-specific SQL data is executed before non-backend-specific SQL data. For example, if your app contains the files ``sql/person.sql`` and ``sql/person.sqlite3.sql`` and you're installing the app on SQLite, Django will execute the contents of -``sql/person.sqlite.sql`` first, then ``sql/person.sql``. +``sql/person.sqlite3.sql`` first, then ``sql/person.sql``.