disable debug output in seed_roles.py

This commit is contained in:
dandds 2019-03-19 10:26:23 -04:00
parent b127978f23
commit 3af849c035

View File

@ -39,7 +39,9 @@ def seed_roles():
if __name__ == "__main__":
config = make_config({"DISABLE_CRL_CHECK": True, "CRL_STORAGE_PROVIDER": "LOCAL"})
config = make_config(
{"DISABLE_CRL_CHECK": True, "CRL_STORAGE_PROVIDER": "LOCAL", "DEBUG": False}
)
app = make_app(config)
with app.app_context():
seed_roles()