mirror of
https://github.com/netinvent/npbackup.git
synced 2025-09-12 07:55:23 +08:00
Fix version string
This commit is contained in:
parent
fb25d83ebb
commit
35dbe97af6
1 changed files with 2 additions and 2 deletions
|
@ -243,10 +243,10 @@ This is free software, and you are welcome to redistribute it under certain cond
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
version_string = "{} v{}-{} {} - {}".format(
|
version_string = "{} v{}{} {} - {}".format(
|
||||||
__intname__,
|
__intname__,
|
||||||
__version__,
|
__version__,
|
||||||
"PRIV" if configuration.IS_PRIV_BUILD else "PUB",
|
"-PRIV" if configuration.IS_PRIV_BUILD else "",
|
||||||
__build__,
|
__build__,
|
||||||
"GUI disabled" if _NO_GUI else "GUI enabled",
|
"GUI disabled" if _NO_GUI else "GUI enabled",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue