From a5af4a2b9ca419dd3df67ca23df650f907281061 Mon Sep 17 00:00:00 2001 From: Michael Timothy Grimes Date: Wed, 15 Aug 2018 03:33:33 -0700 Subject: [PATCH] resolved variable name error in 00_code_format test --- compiler/tests/00_code_format_check_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/tests/00_code_format_check_test.py b/compiler/tests/00_code_format_check_test.py index b46fb206..7ed46e50 100755 --- a/compiler/tests/00_code_format_check_test.py +++ b/compiler/tests/00_code_format_check_test.py @@ -69,9 +69,9 @@ def check_file_format_tab(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)) + ' tabs in ' + - str(file_name) + ' (lines ' + ",".join(str(x) for x in line_positions) + ')') + str(file_name) + ' (lines ' + ",".join(str(x) for x in line_numbers) + ')') f.close() return len(key_positions)