diff options
Diffstat (limited to 'run/tool.py')
| -rwxr-xr-x | run/tool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run/tool.py b/run/tool.py index 0555363..99163d3 100755 --- a/run/tool.py +++ b/run/tool.py @@ -23,7 +23,7 @@ def parse_argv(): def load_func(func_file): base_dir = os.path.dirname(os.path.abspath(__file__)) - func_path = os.path.join(base_dir, f"../tools/py/{func_file}") + func_path = os.path.join(base_dir, f"../tools/{func_file}") if os.path.exists(func_path): spec = importlib.util.spec_from_file_location(func_file, func_path) module = importlib.util.module_from_spec(spec) |
