diff --git a/django/core/management/commands/loaddata.py b/django/core/management/commands/loaddata.py index fb0325906d..e95be6b8d7 100644 --- a/django/core/management/commands/loaddata.py +++ b/django/core/management/commands/loaddata.py @@ -59,7 +59,7 @@ class Command(BaseCommand): else: formats = [] - if verbosity > 2: + if verbosity >= 2: if formats: print "Loading '%s' fixtures..." % fixture_name else: @@ -109,7 +109,7 @@ class Command(BaseCommand): return fixture.close() except: - if verbosity > 2: + if verbosity >= 2: print "No %s fixture '%s' in %s." % \ (format, fixture_name, humanize(fixture_dir)) @@ -125,7 +125,7 @@ class Command(BaseCommand): transaction.leave_transaction_management() if count[0] == 0: - if verbosity > 2: + if verbosity >= 2: print "No fixtures found." else: if verbosity > 0: