changeset 8700:5332c632ac3f

cli: fix db-create after removal of 'tests' argument in DbManage Broken by commit 3afc6bff84bb. [Thomas De Schampheleire: edited commit message]
author Tim Ooms <tatankat@users.noreply.github.com>
date Tue, 20 Oct 2020 15:52:53 +0200
parents 473aee164a09
children 84d2df525238
files kallithea/bin/kallithea_cli_db.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/bin/kallithea_cli_db.py	Mon Oct 19 23:17:24 2020 +0200
+++ b/kallithea/bin/kallithea_cli_db.py	Tue Oct 20 15:52:53 2020 +0200
@@ -59,7 +59,7 @@
                 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)