Skip to content

Commit

Permalink
Fix typo in warnings check (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark committed Oct 13, 2023
1 parent 0c213e3 commit 66e1618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmk_api_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def run(self):
print('Compile job completed successfully!')
good_boards += 1
qmk_redis.set('qmk_good_boards', good_boards)
configurator_build_status[keyboard] = {'works': True, 'warnings': '[WARNING]' in result['output'], 'last_tested': int(time()), 'message': result['output']}
configurator_build_status[keyboard] = {'works': True, 'warnings': '[WARNINGS]' in result['output'], 'last_tested': int(time()), 'message': result['output']}
keyboards_tested[keyboard] = True # FIXME: Remove this when it's no longer used
if keyboard in failed_keyboards:
del failed_keyboards[keyboard] # FIXME: Remove this when it's no longer used
Expand Down

0 comments on commit 66e1618

Please sign in to comment.