diff --git a/st2actions/st2actions/workflows/workflows.py b/st2actions/st2actions/workflows/workflows.py index 397cf2d49b..2317a15ee8 100644 --- a/st2actions/st2actions/workflows/workflows.py +++ b/st2actions/st2actions/workflows/workflows.py @@ -148,7 +148,7 @@ def handle_action_execution(self, ac_ex_db): # Skip if task execution is already in completed state. if task_ex_db.status in statuses.COMPLETED_STATUSES: - msg = ('[%s] Action execution "%s" for task "%s (%s)", route "%s", is not processed ' + msg = ('[%s] Action execution "%s" for task "%s", route "%s", is not processed ' 'because task execution "%s" is already in completed state "%s".') LOG.info(msg, wf_ac_ex_id, str(ac_ex_db.id), task_ex_db.task_id, str(task_ex_db.task_route), str(task_ex_db.id), task_ex_db.status)