SymbolicResponse fix error message.

This commit is contained in:
polesye
2014-05-14 14:30:53 +03:00
parent b3233f2932
commit aedde3397e

View File

@@ -1796,7 +1796,7 @@ class SymbolicResponse(CustomResponse):
log.error(traceback.format_exc())
_ = self.capa_system.i18n.ugettext
# 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,
)
raise Exception(msg)