Fixed #13319 -- Modified the default verbosity level for "no fixtures loaded" messages. Thanks to chtito for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12945 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-04-11 06:50:53 +00:00
parent aed032d0ac
commit 736afb4705
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class Command(BaseCommand):
transaction.leave_transaction_management(using=using)
if object_count == 0:
if verbosity > 1:
if verbosity > 0:
print "No fixtures found."
else:
if verbosity > 0: