Fix check for string equality
This commit is contained in:
parent
749daca458
commit
1ebc908ed0
1 changed files with 1 additions and 1 deletions
|
@ -949,7 +949,7 @@ def load_config (c):
|
|||
c['schedulers'] = []
|
||||
for s in config['schedulers']:
|
||||
# Ugh :-/. There should be no special case here...
|
||||
if s['type'] is not 'Nightly':
|
||||
if s['type'] != 'Nightly':
|
||||
s['treeStableTimer'] = None
|
||||
s['fileIsImportant'] = DefaultGDBfileIsImportant
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue