From f7d83ff62e99a6147c06586cea19a5cf3ae61627 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 25 Jul 2016 01:14:44 +0200 Subject: [PATCH] temporaly fix str(organization) --- app/organization/team/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5