From 56af85b96aaf4ef55a27d2665f96862036ca256e Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Wed, 13 Dec 2017 14:49:42 -0200 Subject: [PATCH] Revert "HOT-FIX: substituir 0 e 1 por False e True" This reverts commit 9207714ce08ee8cd433b21d44d0111f98af59783. --- sapl/materia/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapl/materia/forms.py b/sapl/materia/forms.py index bb4b64706..a852d30a3 100644 --- a/sapl/materia/forms.py +++ b/sapl/materia/forms.py @@ -54,8 +54,8 @@ def ANO_CHOICES(): def em_tramitacao(): return [('', 'Tanto Faz'), - (True, 'Sim'), - (False, 'Não')] + (1, 'Sim'), + (0, 'Não')] class AdicionarVariasAutoriasFilterSet(django_filters.FilterSet):