Skip to content

Commit

Permalink
fix: relative config path error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slashformotion committed Dec 5, 2023
1 parent 2ad7f1d commit 4fcce80
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 @@ -53,7 +53,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 4fcce80

Please sign in to comment.