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: