Fix accessing property

This commit is contained in:
Sergio Durigan Junior 2016-03-15 18:48:10 -04:00
parent 1ebc908ed0
commit 8ce57bc25a

View file

@ -391,7 +391,7 @@ class MyMailNotifier (mail.MailNotifier):
"""Extend the regular MailNotifier class in order to filter e-mails by
scheduler."""
def isMailNeeded (self, build):
if build.properties.getProperty ('scheduler') is not 'racy':
if Property ('scheduler') != 'racy':
return mail.MailNotifier.isMailNeeded (self, build)
else:
return False
@ -574,7 +574,7 @@ class CleanupBreakageLockfile (ShellCommand):
def scheduler_is_racy (step):
return step.build.properties.getProperty ('scheduler') == 'racy'
return Property ('scheduler') == 'racy'
def scheduler_is_not_racy (step):
return step.build.properties.getProperty ('scheduler') != 'racy'