1
0
mirror of synced 2024-11-27 23:40:48 +01:00

wacca: fix version string printing

This commit is contained in:
Kevin Trocolli 2024-02-17 00:21:37 -05:00
parent b462a2720a
commit b7f56c20a7

View File

@ -96,7 +96,7 @@ class Version(ShortVersion):
self.role = role
def __str__(self) -> str:
return f"{self.major}.{self.minor}.{self.patch}.{self.country}.{self.role}.{self.build}"
return f"{self.major}.{self.minor:02}.{self.patch:02}.{self.country}.{self.build:05}.{self.role}"
class HousingInfo: