From a5c8c9880d62dca50caa1cc8a77c3ae40225570b Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Wed, 13 Jul 2016 18:22:04 +0200 Subject: [PATCH] messages: specify message type for ResultFormattingError the ResultFormattingError message class was missing a `type` member which could cause `otptoken-add` command to crash during QR image rendering using suboptimal TTY settings https://fedorahosted.org/freeipa/ticket/6081 Reviewed-By: Alexander Bokovoy --- ipalib/messages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ipalib/messages.py b/ipalib/messages.py index 7288606f6..6abad64a8 100644 --- a/ipalib/messages.py +++ b/ipalib/messages.py @@ -363,6 +363,7 @@ class ResultFormattingError(PublicMessage): """ **13019** Unable to correctly format some part of the result """ + type = "warning" errno = 13019