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)