From 85f6992b5b438b03dbdd122a80a11bcea598effc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Thu, 7 Apr 2022 21:51:56 +0200 Subject: [PATCH] fixed relate file path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- planetmint/backend/tarantool/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/planetmint/backend/tarantool/utils.py b/planetmint/backend/tarantool/utils.py index c2f53eb..c9f4ca2 100644 --- a/planetmint/backend/tarantool/utils.py +++ b/planetmint/backend/tarantool/utils.py @@ -30,8 +30,8 @@ def __read_commands(file_path): def _load_setup_files(): - drop_commands = __read_commands(file_path="drop_db.txt") - init_commands = __read_commands(file_path="init_db.txt") + drop_commands = __read_commands(file_path="planetmint/backend/tarantool/drop_db.txt") + init_commands = __read_commands(file_path="planetmint/backend/tarantool/init_db.txt") return init_commands, drop_commands