Author: russellm
Date: 2010-04-11 01:50:53 -0500 (Sun, 11 Apr 2010)
New Revision: 12945

Modified:
   django/trunk/django/core/management/commands/loaddata.py
Log:
Fixed #13319 -- Modified the default verbosity level for "no fixtures loaded" 
messages. Thanks to chtito for the report and patch.

Modified: django/trunk/django/core/management/commands/loaddata.py
===================================================================
--- django/trunk/django/core/management/commands/loaddata.py    2010-04-11 
06:48:46 UTC (rev 12944)
+++ django/trunk/django/core/management/commands/loaddata.py    2010-04-11 
06:50:53 UTC (rev 12945)
@@ -216,7 +216,7 @@
             transaction.leave_transaction_management(using=using)
 
         if object_count == 0:
-            if verbosity > 1:
+            if verbosity > 0:
                 print "No fixtures found."
         else:
             if verbosity > 0:

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to