Fix accessing property, part 2

This commit is contained in:
Sergio Durigan Junior 2016-03-15 18:53:21 -04:00
parent 8ce57bc25a
commit cc0a2464a6

View file

@ -577,7 +577,7 @@ def scheduler_is_racy (step):
return Property ('scheduler') == 'racy'
def scheduler_is_not_racy (step):
return step.build.properties.getProperty ('scheduler') != 'racy'
return Property ('scheduler') != 'racy'
#######################
#### Build Factory ####