Browse Source

HOT-FIX: corrige erro apontado pelo travis

pull/2950/head
Leandro Roberto 5 years ago
parent
commit
ab39d5819f
  1. 3
      sapl/materia/models.py

3
sapl/materia/models.py

@ -560,7 +560,8 @@ class DocumentoAcessorio(models.Model):
return _('%(tipo)s - %(nome)s de %(data)s por %(autor)s') % { return _('%(tipo)s - %(nome)s de %(data)s por %(autor)s') % {
'tipo': self.tipo, 'tipo': self.tipo,
'nome': self.nome, 'nome': self.nome,
'data': formats.date_format(self.data, "SHORT_DATE_FORMAT"), 'data': formats.date_format(
self.data, "SHORT_DATE_FORMAT") if self.data else '',
'autor': self.autor} 'autor': self.autor}
def delete(self, using=None, keep_parents=False): def delete(self, using=None, keep_parents=False):

Loading…
Cancel
Save