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):