From 60d54e3e3f37d51ca61d9a9c1c0c118924c1db39 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Wed, 11 Mar 2020 13:47:43 -0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20corrige=20checagem=20de=20sess=C3=A3?= =?UTF-8?q?o=20ordin=C3=A1ria=20ou=20especial?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/sessao/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapl/sessao/forms.py b/sapl/sessao/forms.py index a8b6a5999..b4983c7b9 100644 --- a/sapl/sessao/forms.py +++ b/sapl/sessao/forms.py @@ -84,7 +84,7 @@ class SessaoPlenariaForm(FileFieldCheckMixin, ModelForm): ## Sessões Extraordinárias podem estar fora da sessão legislativa descricao_tipo = tipo.nome.lower() - if descricao_tipo == "extraordinária" or descricao_tipo == "especial": + if "extraordinária" in descricao_tipo or "especial" in descricao_tipo: # Ignora checagem de limites para Sessão Legislativa abertura_entre_sl = True encerramento_entre_sl = True