Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
πŸ”€ Merge pull request #81 from Pincer-org/release
Browse files Browse the repository at this point in the history
πŸš‘οΈ Bug with `None` string (missing `+`)
  • Loading branch information
Sigmanificient authored Sep 28, 2021
2 parents 446307b + 718d73e commit 3a86694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pincer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class VersionInfo(NamedTuple):
def __repr__(self) -> str:
return (
f'{self.major}.{self.minor}.{self.micro}'
f'-{self.release_level}{self.serial}' * (self.release_level is not None)
+ f'-{self.release_level}{self.serial}' * (self.release_level is not None)
)


Expand Down

0 comments on commit 3a86694

Please sign in to comment.