Browse Source

HOT-FIX: Corrige teste na edição de Autor

pull/3163/head
Leandro Roberto 5 years ago
committed by eribeiro
parent
commit
385c445e53
  1. 2
      sapl/base/forms.py

2
sapl/base/forms.py

@ -521,7 +521,7 @@ class AutorForm(ModelForm):
tipo = cd['tipo']
if 'nome' in cd and \
Autor.objects.filter(nome=cd['nome']).exists():
qs_autor.filter(nome=cd['nome']).exists():
raise ValidationError("Autor '%s' já existente!" % cd['nome'])
if not tipo.content_type:

Loading…
Cancel
Save