Merge branch 'develop'

Fix - Quitar TZ en fechas del certificado
This commit is contained in:
Mauricio Baeza 2017-10-30 23:05:06 -06:00
commit 3486272018
1 changed files with 2 additions and 2 deletions

View File

@ -349,8 +349,8 @@ class Certificado(object):
data['cer_txt'] = cer_txt.replace('\n', '')
data['serie'] = serie
data['rfc'] = rfc
data['desde'] = desde
data['hasta'] = hasta
data['desde'] = desde.replace(tzinfo=None)
data['hasta'] = hasta.replace(tzinfo=None)
return data
def _get_p12(self, password, rfc):