diff --git a/djangit/checkout.py b/djangit/checkout.py index 0b51c74..d0f72cf 100644 --- a/djangit/checkout.py +++ b/djangit/checkout.py @@ -75,7 +75,7 @@ def handle(self, *args, **options): if options['plan']: print("python manage.py migrate", app_name, node) else: - call_command("migrate", app_name, node, verbosity=0) + call_command("migrate", app_name, node) if options['plan']: print("\nSwitch to target branch:") @@ -84,4 +84,4 @@ def handle(self, *args, **options): print("python manage.py migrate\n") else: git_checkout(target_branch) - call_command("migrate", verbosity=0) + call_command("migrate")