Skip to content
Snippets Groups Projects
Commit c6e4e847 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[team][models] Move __unicode__ to __str__

__unicode__ is a leftover of Python 2
parent 6ac646b4
No related branches found
No related tags found
1 merge request!314Cleanup model representation
Pipeline #35958 passed
......@@ -144,7 +144,7 @@ class Team(models.Model):
# _____ Overrides __________
def __unicode__(self):
def __str__(self):
return self.fullname()
# _____ Methods __________
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment