summaryrefslogtreecommitdiffstats
path: root/ipalib/messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/messages.py')
-rw-r--r--ipalib/messages.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/ipalib/messages.py b/ipalib/messages.py
index 44fee6d15..078e13f59 100644
--- a/ipalib/messages.py
+++ b/ipalib/messages.py
@@ -321,6 +321,16 @@ class CommandDeprecatedWarning(PublicMessage):
format = _(u"'%(command)s' is deprecated. %(additional_info)s")
+class ExternalCommandOutput(PublicMessage):
+ """
+ **13016** Line of output from an external command.
+ """
+
+ errno = 13016
+ type = "info"
+ format = _("%(line)s")
+
+
def iter_messages(variables, base):
"""Return a tuple with all subclasses
"""