Browse Source

Update sapl/base/models.py

Co-Authored-By: Edward <9326037+edwardoliveira@users.noreply.github.com>
pull/2962/head
Cesar Augusto de Carvalho 6 years ago
committed by GitHub
parent
commit
dfad1abf5e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      sapl/base/models.py

2
sapl/base/models.py

@ -264,4 +264,4 @@ class AutorUser(models.Model):
ordering = ('autor__nome',)
def __str__(self):
return str(self.autor) + ' - ' + str(self.user)
return "%s - %s" % (self.autor, self.user)

Loading…
Cancel
Save