# HG changeset patch # User Tim Ooms # Date 2020-10-20 15:52:53 # Node ID 5332c632ac3f26308765e73729bfffad03f337b2 # Parent 473aee164a096999da9f4999f33287ef917a1f21 cli: fix db-create after removal of 'tests' argument in DbManage Broken by commit 3afc6bff84bb. [Thomas De Schampheleire: edited commit message] diff --git a/kallithea/bin/kallithea_cli_db.py b/kallithea/bin/kallithea_cli_db.py --- a/kallithea/bin/kallithea_cli_db.py +++ b/kallithea/bin/kallithea_cli_db.py @@ -59,7 +59,7 @@ def db_create(user, password, email, rep public_access=public_access, ) dbmanage = DbManage(dbconf=dbconf, root=config['here'], - tests=False, cli_args=cli_args) + cli_args=cli_args) dbmanage.create_tables(reuse_database=reuse) repo_root_path = dbmanage.prompt_repo_root_path(None) dbmanage.create_settings(repo_root_path)