From ac2c8258597a82d24857e807810876764b459efa Mon Sep 17 00:00:00 2001 From: Mikhail Sandakov Date: Mon, 29 Jul 2024 14:00:57 +0300 Subject: [PATCH] Fix mariadb version string representation --- pleskdistup/common/src/mariadb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pleskdistup/common/src/mariadb.py b/pleskdistup/common/src/mariadb.py index edc520e..e9b5b07 100644 --- a/pleskdistup/common/src/mariadb.py +++ b/pleskdistup/common/src/mariadb.py @@ -71,7 +71,7 @@ def __init__(self, to_extract: str): def __str__(self): """Return a string representation of a PHPVersion object.""" - return f"PHP {self.major}.{self.minor}.{self.patch}" + return f"{self.major}.{self.minor}.{self.patch}" def __lt__(self, other): return self.major < other.major or (self.major == other.major and self.minor < other.minor) or (self.major == other.major and self.minor == other.minor and self.patch < other.patch)