Commit 736afb47 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #13319 -- Modified the default verbosity level for "no fixtures loaded"...

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
parent aed032d0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: