From c0415830c6814929212efcfe16d139a700599bc7 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Fri, 20 Dec 2019 10:00:17 +0100 Subject: [PATCH] [navigation][models] Move __unicode__ to __str__ __unicode__ is a leftover of Python 2 --- beat/web/navigation/models.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/beat/web/navigation/models.py b/beat/web/navigation/models.py index a8136f1c7..2b87891be 100644 --- a/beat/web/navigation/models.py +++ b/beat/web/navigation/models.py @@ -29,19 +29,15 @@ from django.db import models from django.contrib.auth.models import User -#---------------------------------------------------------- +# ---------------------------------------------------------- class Agreement(models.Model): user = models.OneToOneField(User) version = models.PositiveIntegerField( - default=1, - help_text='Last version of the ToS the user has agreed with', + default=1, help_text="Last version of the ToS the user has agreed with" ) - def __unicode__(self): - return u"%s agrees with ToS version %d" % ( - self.user.username, - self.version - ) + def __str__(self): + return "%s agrees with ToS version %d" % (self.user.username, self.version) -- GitLab