2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-21 19:22:05 +00:00

Remove trailing spaces in file xCAT-openbmc-py/lib/python/agent/xcatagent/base.py

This commit is contained in:
GONG Jie 2017-12-31 23:59:59 +00:00
parent d2c8a6b600
commit cda261a440

View File

@ -15,13 +15,13 @@ class BaseManager(object):
try:
__import__(module_name)
except ImportError as err:
raise ImportError(err)
raise ImportError(err)
class_name = MODULE_MAP[name]
return utils.class_func(module_name, class_name)
def process_nodes_worker(self, name, classname, nodes, nodeinfo, command, args):
module_name = 'xcatagent.%s' % name
obj_func = utils.class_func(module_name, classname)