예제 #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)