build: Set a default error message for #3692

This change will prevent annoying exceptions from
appearing when error messages are missing.
This commit is contained in:
Thomas Nagy 2016-10-20 21:03:04 +02:00 committed by wm4
parent 8b00d82b79
commit d38baa65ca
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ the autodetection check failed.".format(self.identifier)
if self.enabled_option() == False:
return
if self.attributes.get('req', False):
raise ConfigurationError(self.attributes['fmsg'])
raise ConfigurationError(self.attributes.get('fmsg', 'Unsatisfied requirement'))
def skip(self, reason='disabled', color='YELLOW'):
self.ctx.end_msg(self.__message__(reason), color)