Skip to content
Snippets Groups Projects
Commit 62784609 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 075196a6
No related branches found
No related tags found
No related merge requests found
Pipeline #2431 passed
......@@ -68,7 +68,7 @@ def fuse(ctx, config_file):
if os.path.isfile(config_file):
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