def executeFollowUpCommand(self, followUpCommand):
try:
exitCode = self.execve(followUpCommand[0], followUpCommand, os.environ)
if exitCode != 0:
raise FollowUpCommandFailedException("Follow up command failed with exit code %s." % exitCode )
except Exception as e:
raise FollowUpCommandFailedException("Follow up command failed. %s" % e.message)
follow_up_command_executor.py 文件源码
python
阅读 23
收藏 0
点赞 0
评论 0
评论列表
文章目录