From 53a8073d86d858d2303560774744fcc564ffadeb Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 14 Sep 2022 09:21:12 +0100 Subject: [PATCH] import the "re" module in the editor Without it, pasting doesn't actually work. --- editor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/editor.py b/editor.py index aae99ea..0d07ec6 100644 --- a/editor.py +++ b/editor.py @@ -2,6 +2,7 @@ from __future__ import division, print_function, unicode_literals +import re import sys import string -- 2.30.2