From: Guillaume Pellerin Date: Sun, 24 Jul 2016 23:14:44 +0000 (+0200) Subject: temporaly fix str(organization) X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=f7d83ff62e99a6147c06586cea19a5cf3ae61627;p=mezzo.git temporaly fix str(organization) --- diff --git a/app/organization/team/models.py b/app/organization/team/models.py index f187876b..c9d73b92 100644 --- a/app/organization/team/models.py +++ b/app/organization/team/models.py @@ -53,7 +53,7 @@ class Address(models.Model): country = CountryField(_('country')) def __str__(self): - return ' '.join((self.address, self.postal_code, self.country)) + return ' '.join((self.address, self.postal_code)) class Meta: abstract = True