Skip to content

Commit

Permalink
[FIX] Corrige envio de NFS-e Ginfes
Browse files Browse the repository at this point in the history
  • Loading branch information
danimaribeiro committed Oct 18, 2018
1 parent ff75a6c commit e233abf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytrustnfe/nfse/ginfes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _send(certificado, method, **kwargs):
xml_send = kwargs['xml']
response = client.service[method](header, xml_send)

response, obj = sanitize_response(response.encode('utf-8'))
response, obj = sanitize_response(response)
return {
'sent_xml': xml_send,
'received_xml': response,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = "1.0.18"
VERSION = "1.0.19"


setup(
Expand Down

0 comments on commit e233abf

Please sign in to comment.