diff options
Diffstat (limited to 'sjdbmk/twa.py')
-rw-r--r-- | sjdbmk/twa.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sjdbmk/twa.py b/sjdbmk/twa.py index 371a01b..b7bb64e 100644 --- a/sjdbmk/twa.py +++ b/sjdbmk/twa.py @@ -81,7 +81,7 @@ def extract_community_time(prs: pptx.presentation.Presentation, community_time_p t = "Whole School Assembly" elif "tutor group check-in" in t.lower() or "follow up day" in t.lower() or "open session for tutor and tutee" in t.lower(): t = "Tutor Time" - res[r][c] = t + res[r][c] = t.replace("(", " (").replace(")", ") ").replace(" ", " ") if cell.is_merge_origin: for sh in range(cell.span_height): for sw in range(cell.span_width): |