From 5566e6d474f90c2b9e613da6b467d3a084f14379 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Wed, 16 Mar 2016 14:50:09 -0300 Subject: [PATCH] =?UTF-8?q?Remove=20condi=C3=A7=C3=A3o=20'else'=20da=20cle?= =?UTF-8?q?an=5F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- materia/forms.py | 2 -- norma/forms.py | 2 -- parlamentares/forms.py | 2 -- sessao/forms.py | 4 ---- 4 files changed, 10 deletions(-) diff --git a/materia/forms.py b/materia/forms.py index 78f581d22..f9a4b4647 100644 --- a/materia/forms.py +++ b/materia/forms.py @@ -46,8 +46,6 @@ class ProposicaoForm(ModelForm): if texto_original.size > 5*1024*1024: raise ValidationError("Arquivo muito grande. ( > 5mb )") return texto_original - else: - raise ValidationError("Não foi possível salvar o arquivo.") class Meta: model = Proposicao diff --git a/norma/forms.py b/norma/forms.py index 2d16da2fb..60f82f172 100644 --- a/norma/forms.py +++ b/norma/forms.py @@ -109,8 +109,6 @@ class NormaJuridicaForm(ModelForm): if texto_integral.size > 5*1024*1024: raise ValidationError("Arquivo muito grande. ( > 5mb )") return texto_integral - else: - raise ValidationError("Não foi possível salvar o arquivo.") class Meta: model = NormaJuridica diff --git a/parlamentares/forms.py b/parlamentares/forms.py index be49aab6a..622f996ad 100644 --- a/parlamentares/forms.py +++ b/parlamentares/forms.py @@ -37,8 +37,6 @@ class ParlamentaresForm (ModelForm): if fotografia.size > 2*1024*1024: raise ValidationError('Imagem muito grande. ( > 2mb )') return fotografia - else: - raise ValidationError('Não foi possível salvar a imagem.') class Meta: model = Parlamentar diff --git a/sessao/forms.py b/sessao/forms.py index 79d8c458c..0f44294d9 100644 --- a/sessao/forms.py +++ b/sessao/forms.py @@ -99,8 +99,6 @@ class SessaoForm(ModelForm): if url_audio.size > 5*1024*1024: raise ValidationError("Arquivo muito grande. ( > 5mb )") return url_audio - else: - raise ValidationError("Não foi possível salvar o arquivo.") def clean_url_video(self): url_video = self.cleaned_data.get('url_video', False) @@ -108,8 +106,6 @@ class SessaoForm(ModelForm): if url_video.size > 5*1024*1024: raise ValidationError("Arquivo muito grande. ( > 5mb )") return url_video - else: - raise ValidationError("Não foi possível salvar o arquivo.") def __init__(self, *args, **kwargs):