Skip to content

Commit b3e293c

Browse files
author
Caspar van Leeuwen
committed
Add missing bracket
1 parent 0ba867d commit b3e293c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eessi_bot_event_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ def handle_bot_command_status(self, event_info, bot_command):
628628
for x in range(0, len(sorted_table['date'])):
629629
# Check if the current 'for arch' AND repo are already in the status_table_last. If not, add it
630630
already_present = False
631-
for y in range(0, len(status_table_last['for arch']):
631+
for y in range(0, len(status_table_last['for arch'])):
632632
if (
633633
sorted_table['for arch'][x] == status_table_last['for arch'][y]
634634
and sorted_table['for repo'][x] == status_table_last['for repo'][y]

0 commit comments

Comments
 (0)