From dfad1abf5ef2a52c675b50cbc9ef70a1d005ae0c Mon Sep 17 00:00:00 2001 From: Cesar Augusto de Carvalho Date: Tue, 8 Oct 2019 11:28:25 -0300 Subject: [PATCH] Update sapl/base/models.py Co-Authored-By: Edward <9326037+edwardoliveira@users.noreply.github.com> --- sapl/base/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapl/base/models.py b/sapl/base/models.py index 119742430..7f2ea8d6b 100644 --- a/sapl/base/models.py +++ b/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) \ No newline at end of file + return "%s - %s" % (self.autor, self.user)