From c5cec065b79eca2f0e29ab568ed94e34d21a4370 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 28 Jun 2022 10:07:22 +0100 Subject: [PATCH] Specification document is not html --- daemon.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/daemon.py b/daemon.py index 42df0f2e7..df2daa8ef 100644 --- a/daemon.py +++ b/daemon.py @@ -4864,15 +4864,13 @@ class PubServer(BaseHTTPRequestHandler): if fields.get('editedSpecification'): specification_str = fields['editedSpecification'] - if not dangerous_markup(specification_str, - allow_local_network_access): - try: - with open(specification_filename, 'w+', - encoding='utf-8') as specificationfile: - specificationfile.write(specification_str) - except OSError: - print('EX: unable to write specification ' + - specification_filename) + try: + with open(specification_filename, 'w+', + encoding='utf-8') as specificationfile: + specificationfile.write(specification_str) + except OSError: + print('EX: unable to write specification ' + + specification_filename) else: if os.path.isfile(specification_filename): try: