From c0b14461ff79254c98e2c4aba60c59b0d86ac660 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Mon, 27 Nov 2017 14:17:59 -0200 Subject: [PATCH] =?UTF-8?q?HOT-FIX:=20op=C3=A7=C3=B5es=20de=20em=5Ftramita?= =?UTF-8?q?cao=20como=200=20e=201=20e=20n=C3=A3o=20True=20e=20False?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sapl/materia/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/materia/models.py b/sapl/materia/models.py index c374b7474..45e95c919 100644 --- a/sapl/materia/models.py +++ b/sapl/materia/models.py @@ -18,8 +18,8 @@ from sapl.utils import (RANGE_ANOS, YES_NO_CHOICES, SaplGenericForeignKey, SaplGenericRelation, restringe_tipos_de_arquivo_txt, texto_upload_path) -EM_TRAMITACAO = [(1, 'Sim'), - (0, 'Não')] +EM_TRAMITACAO = [(True, 'Sim'), + (False, 'Não')] def grupo_autor():