From dfee6b328eec9ff1e4f24b5ad16982ac11211153 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Thu, 25 Jan 2007 00:53:30 +0000
Subject: [PATCH] Fixed #3302 -- Added small note to docs/django-admin.txt
 about ordering of initial-data SQL files

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4425 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/django-admin.txt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index a5b952b5e5..310e8dff0e 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -253,6 +253,8 @@ files are piped directly into the database after all of the models'
 table-creation statements have been executed. Use this SQL hook to populate
 tables with any necessary initial records, SQL functions or test data.
 
+Note that the order in which the SQL files are processed is undefined.
+
 sqlreset [appname appname ...]
 --------------------------------------
 
@@ -380,7 +382,7 @@ Example usage::
 
     django-admin.py syncdb --verbosity=2
 
-Verbosity determines the amount of notification and debug information that 
+Verbosity determines the amount of notification and debug information that
 will be printed to the console. '0' is no output, '1' is normal output,
 and `2` is verbose output.