Fixed ActionPlanNotFound typo in msg_fmt

The msg_fmt of ActionPlanNotFound was missing an "_" which caused
errors upon trying to format it, so I fixed it.

Change-Id: I515c2097a563f809e319d2e57480fd340b878cef
Closes-Bug: #1538065
This commit is contained in:
Vincent Françoise
2016-01-26 11:24:13 +01:00
parent 982410dd3e
commit 7406a1e713
3 changed files with 87 additions and 71 deletions

View File

@@ -179,7 +179,7 @@ class AuditReferenced(Invalid):
class ActionPlanNotFound(ResourceNotFound):
msg_fmt = _("ActionPlan %(action plan)s could not be found")
msg_fmt = _("ActionPlan %(action_plan)s could not be found")
class ActionPlanAlreadyExists(Conflict):