Skip to content

Commit 66e1618

Browse files
authored
Fix typo in warnings check (#17)
1 parent 0c213e3 commit 66e1618

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qmk_api_tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def run(self):
303303
print('Compile job completed successfully!')
304304
good_boards += 1
305305
qmk_redis.set('qmk_good_boards', good_boards)
306-
configurator_build_status[keyboard] = {'works': True, 'warnings': '[WARNING]' in result['output'], 'last_tested': int(time()), 'message': result['output']}
306+
configurator_build_status[keyboard] = {'works': True, 'warnings': '[WARNINGS]' in result['output'], 'last_tested': int(time()), 'message': result['output']}
307307
keyboards_tested[keyboard] = True # FIXME: Remove this when it's no longer used
308308
if keyboard in failed_keyboards:
309309
del failed_keyboards[keyboard] # FIXME: Remove this when it's no longer used

0 commit comments

Comments
 (0)