show the Mail-in-a-Box version in the system status checks even when the new-version check is disabled

fixes #922
This commit is contained in:
Joshua Tauberer 2018-11-30 10:26:49 -05:00
parent e5e0c64395
commit 60f9c9e3b7
1 changed files with 7 additions and 7 deletions

View File

@ -794,14 +794,14 @@ def get_latest_miab_version():
def check_miab_version(env, output):
config = load_settings(env)
if config.get("privacy", True):
output.print_warning("Mail-in-a-Box version check disabled by privacy setting.")
else:
try:
this_ver = what_version_is_this(env)
except:
this_ver = "Unknown"
try:
this_ver = what_version_is_this(env)
except:
this_ver = "Unknown"
if config.get("privacy", True):
output.print_warning("You are running version Mail-in-a-Box %s. Mail-in-a-Box version check disabled by privacy setting." % this_ver)
else:
latest_ver = get_latest_miab_version()
if this_ver == latest_ver: