Merge "Remove string concatenation in favor of string formatting"

This commit is contained in:
Jenkins
2015-12-21 10:13:56 +00:00
committed by Gerrit Code Review
8 changed files with 20 additions and 31 deletions

View File

@@ -34,7 +34,7 @@ class TriggerActionPlan(object):
action_plan_uuid)
cmd.execute()
except Exception as e:
LOG.error("do_launch_action_plan " + unicode(e))
LOG.exception(e)
def launch_action_plan(self, context, action_plan_uuid):
LOG.debug("Trigger ActionPlan %s" % action_plan_uuid)