From 64c72ee19dfe87a1eb945121cd04b0698b5602e5 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Fri, 22 Jul 2022 18:15:27 +0300 Subject: [PATCH] Fix typo --- compiler/tests/00_code_format_check_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/00_code_format_check_test.py b/compiler/tests/00_code_format_check_test.py index 24e203ab..7249ba7a 100755 --- a/compiler/tests/00_code_format_check_test.py +++ b/compiler/tests/00_code_format_check_test.py @@ -92,7 +92,7 @@ def check_file_format_carriage(file_name): if len(key_positions)>10: line_numbers = key_positions[:10] + [" ..."] else: - line_numbers = key_positoins + line_numbers = key_positions debug.info(0, '\nFound ' + str(len(key_positions)) + ' carriage returns in ' + str(file_name) + ' (lines ' + ",".join(str(x) for x in line_numbers) + ')') f.close()