From 3734f3cfc0f67ca90782952d2c1dab413ee4d2f0 Mon Sep 17 00:00:00 2001 From: gschwind Date: Fri, 7 May 2021 09:10:42 +0200 Subject: [PATCH] Improve comments Co-authored-by: David Huard --- pywps/inout/outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywps/inout/outputs.py b/pywps/inout/outputs.py index 489f276d5..91c431ac2 100644 --- a/pywps/inout/outputs.py +++ b/pywps/inout/outputs.py @@ -231,7 +231,7 @@ def _json_data(self, data): # Try to inline data as text but if fail encode is in base64 if self.data_format.encoding == 'utf-8': out = self.data.decode('utf-8') - # If data is already enclose with CDATApatern do not add it twise + # If data is already enclosed with CDATA pattern, do not add it twice if CDATA_PATTERN.match(out): data["data"] = out else: