fix: invalid vcs subcommand

This commit is contained in:
Manuel Barkhau 2018-11-11 15:41:45 +01:00
parent abed4c9aad
commit e6e3b963dd
2 changed files with 1 additions and 2 deletions

View file

@ -245,7 +245,6 @@ def bump(
if dry or _vcs is None or not cfg.commit:
return
return
for filepath in filepaths:
_vcs.add(filepath)

View file

@ -89,7 +89,7 @@ class VCS:
def add(self, path) -> None:
log.info(f"{self.name} add {path}")
self('add', path=path)
self('add_path', path=path)
def commit(self, message: str) -> None:
log.info(f"{self.name} commit -m '{message}'")