diff --git a/sigi/apps/convenios/models.py b/sigi/apps/convenios/models.py index b4dfc79..84e683d 100644 --- a/sigi/apps/convenios/models.py +++ b/sigi/apps/convenios/models.py @@ -490,7 +490,7 @@ class Gescon(models.Model): projeto = Projeto.objects.get(sigla=sigla_sigi) try: - response = requests.get(url) + response = requests.get(url, verify=False) except Exception as e: self.add_message( _(u"\tErro ao acessar {url}: {errmsg}").format( @@ -775,4 +775,4 @@ class Gescon(models.Model): @classmethod def load(cls): obj, created = cls.objects.get_or_create(pk=1) - return obj \ No newline at end of file + return obj