diff --git a/src/erpbrasil/edoc/resposta.py b/src/erpbrasil/edoc/resposta.py
index 347ea24..b510711 100644
--- a/src/erpbrasil/edoc/resposta.py
+++ b/src/erpbrasil/edoc/resposta.py
@@ -17,7 +17,7 @@ def __init__(self, webservice, raiz, xml, retorno, resposta):
def analisar_retorno_raw(operacao, raiz, xml, retorno, classe):
retorno.raise_for_status()
- match = re.search("(.*?)", retorno.text.replace("\n", ""))
+ match = re.search("(.*?)", retorno.text.replace("\n", ""))
if match:
xml_resposta = match.group(1)
xml_etree = etree.fromstring(xml_resposta)