From 406e7c65bb8fa762859a805dd12aeffa29e09b9b Mon Sep 17 00:00:00 2001 From: Rebekah Rudd Date: Wed, 4 Dec 2024 21:27:35 -0500 Subject: [PATCH] changing the string to ord --- gatorgrade/input/command_line_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatorgrade/input/command_line_generator.py b/gatorgrade/input/command_line_generator.py index 3e085b07..85729aa0 100644 --- a/gatorgrade/input/command_line_generator.py +++ b/gatorgrade/input/command_line_generator.py @@ -48,7 +48,7 @@ def generate_checks( string_check = str(check_data.check.get("check")) for i in string_check: # if ord(i) == "/u2728": - print_statement += "this is the ord(i) =" + ord(i) + print_statement += "this is the ord(i) =" + str(ord(i)) # if ord(i) == "/u0064" # removed_emojis += string_check.replace(i, "") removed_emojis += string_check + print_statement