@ -46,7 +46,9 @@ def run_script(fn):
sio = StringIO()
with redirect_stdout(sio), redirect_stderr(sio):
with open(fn) as f:
exec(f.read())
src = f.read()
code = compile(src, fn, "exec")
exec(src)
return sio.getvalue()
def encode_html(*msg):
The note is not visible to the blocked user.