示例#1
0
def system_version():
    from status_checks import what_version_is_this

    try:
        return what_version_is_this(env)
    except Exception as e:
        return (str(e), 500)
示例#2
0
文件: daemon.py 项目: fdns/mailinabox
def system_version():
	from status_checks import what_version_is_this
	try:
		return what_version_is_this(env)
	except Exception as e:
		return (str(e), 500)