Fix version string

This commit is contained in:
Orsiris de Jong 2023-03-27 15:30:38 +02:00
parent fb25d83ebb
commit 35dbe97af6

View file

@ -243,10 +243,10 @@ This is free software, and you are welcome to redistribute it under certain cond
args = parser.parse_args()
version_string = "{} v{}-{} {} - {}".format(
version_string = "{} v{}{} {} - {}".format(
__intname__,
__version__,
"PRIV" if configuration.IS_PRIV_BUILD else "PUB",
"-PRIV" if configuration.IS_PRIV_BUILD else "",
__build__,
"GUI disabled" if _NO_GUI else "GUI enabled",
)