Commit aedde339 by polesye

SymbolicResponse fix error message.

parent b3233f29
...@@ -1796,7 +1796,7 @@ class SymbolicResponse(CustomResponse): ...@@ -1796,7 +1796,7 @@ class SymbolicResponse(CustomResponse):
log.error(traceback.format_exc()) log.error(traceback.format_exc())
_ = self.capa_system.i18n.ugettext _ = self.capa_system.i18n.ugettext
# Translators: 'SymbolicResponse' is a problem type and should not be translated. # Translators: 'SymbolicResponse' is a problem type and should not be translated.
msg = _(u"oops in SymbolicResponse (cfn) error {error_msg}").format( msg = _(u"An error occurred with SymbolicResponse. The error was: {error_msg}").format(
error_msg=err, error_msg=err,
) )
raise Exception(msg) raise Exception(msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment