Browse Source

Fixed loaddata shell output

Ralfp 12 years ago
parent
commit
2063aea3cb
1 changed files with 3 additions and 3 deletions
  1. 3 3
      misago/setup/management/commands/loaddata.py

+ 3 - 3
misago/setup/management/commands/loaddata.py

@@ -31,12 +31,12 @@ class Command(BaseCommand):
                 if update_app_fixtures(app):
                     updated += 1
                     if not options['quiet']:
-                        self.stdout.write('Updating fixtures from %s' % app)
+                        self.stdout.write('\nUpdating fixtures from %s' % app)
             else:
                 if load_app_fixtures(app):
                     loaded += 1
                     Fixture.objects.create(app_name=app)
                     if not options['quiet']:
-                        self.stdout.write('Loading fixtures from %s' % app)
+                        self.stdout.write('\nLoading fixtures from %s' % app)
         if not options['quiet']:
-            self.stdout.write('Loaded %s fixtures and updated %s fixtures.\n' % (loaded, updated))
+            self.stdout.write('\nLoaded %s fixtures and updated %s fixtures.\n' % (loaded, updated))