From b7f56c20a7cd50765d8c79f9448c91421ccb37eb Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Sat, 17 Feb 2024 00:21:37 -0500 Subject: [PATCH] wacca: fix version string printing --- titles/wacca/handlers/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titles/wacca/handlers/helpers.py b/titles/wacca/handlers/helpers.py index 354bdaf..848e2d2 100644 --- a/titles/wacca/handlers/helpers.py +++ b/titles/wacca/handlers/helpers.py @@ -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: