File size: 690 Bytes
17e971c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #coding: utf-8
#------------------------------
# ζΉιειθ°η¨θζ¬
#------------------------------
import os,sys
os.chdir('/www/server/panel')
# sys.path.insert(1,'BTPanel/')
sys.path.insert(0,'class/')
import public
import traceback
plugin_name = 'mail_sys'
def_name = 'check_task_status'
import PluginLoader
try:
args = public.dict_obj()
# args.plugin_get_object = 1
from mailModel import mainModel
data = mainModel.main().check_task_status(args)
# data = PluginLoader.plugin_run(plugin_name,def_name,args)
print("ζΉιει -{} ".format(data))
except Exception as ex:
print("ζΉιει error: " + str(ex))
print(traceback.format_exc())
|