diff --git a/orchestra/management/commands/setuppostgres.py b/orchestra/management/commands/setuppostgres.py index 2f6a7250..b5344fa9 100644 --- a/orchestra/management/commands/setuppostgres.py +++ b/orchestra/management/commands/setuppostgres.py @@ -54,6 +54,8 @@ class Command(BaseCommand): def handle(self, *args, **options): interactive = options.get('interactive') db_password = options.get('db_password') + print(db_password) + print(type(db_password)) context = { 'db_name': options.get('db_name'), 'db_user': options.get('db_user'),