Skip to content

Commit

Permalink
Merge pull request #171 from slashformotion/fix-config-path-issue
Browse files Browse the repository at this point in the history
fix: relative config path error fix
  • Loading branch information
dmerejkowsky committed Dec 6, 2023
2 parents 412347b + 4fcce80 commit 146c9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tbump/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, project_path: Path, path: Path, doc: TOMLDocument):

@property
def relative_path(self) -> Path:
return self.path.relative_to(self.project_path)
return self.project_path / self.path

def print_self(self) -> None:
from tbump.cli import print_diff
Expand Down

0 comments on commit 146c9b3

Please sign in to comment.