diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-28 17:52:47 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-28 17:52:47 +0100 |
commit | fc2d6441596e547ba8d8c9957b092724d8bb9ae3 (patch) | |
tree | 6c5cf66c2f6057f45f37bf4a8d365fac084ca1c7 /Smarker/reflect.py | |
parent | d0f18184cb8619a1b4c1c540cf6af66eaacac239 (diff) | |
download | Smarker-fc2d6441596e547ba8d8c9957b092724d8bb9ae3.tar.gz Smarker-fc2d6441596e547ba8d8c9957b092724d8bb9ae3.zip |
Started writing documentation
Diffstat (limited to 'Smarker/reflect.py')
-rw-r--r-- | Smarker/reflect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Smarker/reflect.py b/Smarker/reflect.py index 2a1f552..44d69de 100644 --- a/Smarker/reflect.py +++ b/Smarker/reflect.py @@ -376,7 +376,7 @@ def gen_reflection_report(client_code_path, assessment_struct, student_no, confi lines = lines.replace("\r", "") matches = {} for regex_ in contents["regexes"]: - matches[regex_] = re.findall(regex_, lines) + matches[regex_] = re.findall(str(regex_), lines) required_files_features["run"][j][cmd]["regexes"] = matches required_files_features["run"][j][cmd]["full_output"] = lines |