mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
fix log.warn -> log.warning deprication
This commit is contained in:
parent
1e633a2a7d
commit
9d837815d7
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ def parse(ctx: ProjectContext) -> MaybeConfig:
|
||||||
|
|
||||||
return _parse_config(raw_cfg)
|
return _parse_config(raw_cfg)
|
||||||
except ValueError as ex:
|
except ValueError as ex:
|
||||||
log.warn(f"Couldn't parse {ctx.config_filepath}: {str(ex)}")
|
log.warning(f"Couldn't parse {ctx.config_filepath}: {str(ex)}")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue