Skip to content
Snippets Groups Projects
Commit 20371218 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

cli: Fix AttributeError after config_basepath removal

That function from swh.core.config was removed in swh/devel/swh-core@2663c0a4.
parent d69d19aa
No related branches found
No related tags found
No related merge requests found
Pipeline #2438 passed
......@@ -50,7 +50,7 @@ def web(ctx: Context, config_file: str):
config_file = DEFAULT_CONFIG_PATH
try:
conf = config.read_raw_config(config.config_basepath(config_file))
conf = config.read_raw_config(config_file)
if not conf:
raise ValueError(f"Cannot parse configuration file: {config_file}")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment