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'] = []
|
c['schedulers'] = []
|
||||||
for s in config['schedulers']:
|
for s in config['schedulers']:
|
||||||
# Ugh :-/. There should be no special case here...
|
# Ugh :-/. There should be no special case here...
|
||||||
if s['type'] is not 'Nightly':
|
if s['type'] != 'Nightly':
|
||||||
s['treeStableTimer'] = None
|
s['treeStableTimer'] = None
|
||||||
s['fileIsImportant'] = DefaultGDBfileIsImportant
|
s['fileIsImportant'] = DefaultGDBfileIsImportant
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue