Skip to content

Commit 68fcd07

Browse files
committed
Handle feedback on teammessage
1 parent 4f4effb commit 68fcd07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

example_problems/hangman/output_validator/validator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def write_generic_message(message: str, feedback_file: str) -> None:
2626
try:
2727
with open(message_file_path, 'r+') as message_file:
2828
if message not in message_file.read():
29-
print(message, file=teammessage_file)
29+
print(message, file=message_file)
3030
except FileNotFoundError:
3131
# Overwrite in case the file got created in between
3232
with open(message_file_path, 'w') as message_file:

0 commit comments

Comments
 (0)