diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-08 17:15:26 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 18:26:03 +0200 |
commit | fccd2510276e510132d121cd88e76d62b1899122 (patch) | |
tree | 7b6e4f62216cf952b98abc710bba2ebef6b93c7e /ishtar_common/models.py | |
parent | 15e4d32a3220f0f0f4de43f0217b893da862cc4a (diff) | |
download | Ishtar-fccd2510276e510132d121cd88e76d62b1899122.tar.bz2 Ishtar-fccd2510276e510132d121cd88e76d62b1899122.zip |
Manage relation types in searches
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 10939deea..e2b1d5b02 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3557,7 +3557,7 @@ class Town(Imported, models.Model): if settings.COUNTRY == "fr": cached_label = u"%s - %s" % (self.name, self.numero_insee[:2]) if self.year and self.children.count(): - cached_label += " ({})".format(self.year) + cached_label += u" ({})".format(self.year) return cached_label |