diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-18 17:40:40 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-02-18 17:40:40 +0100 |
commit | ab8666e7140f64698c2755b72ec5b322facae952 (patch) | |
tree | 796bed23b921d02729bfead39956225f44a42a2d /archaeological_operations/models.py | |
parent | 46c182b92e2034a3698889b3f430d50f2d589266 (diff) | |
download | Ishtar-ab8666e7140f64698c2755b72ec5b322facae952.tar.bz2 Ishtar-ab8666e7140f64698c2755b72ec5b322facae952.zip |
Sites: add town form
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 4be807478..296cbf159 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -130,7 +130,7 @@ class ArchaeologicalSite(BaseHistorizedItem): for k, lbl in keys: if getattr(self, k).count(): name += lbl.format(u", ".join([ - unicode(v) for v in getattr(self, k).all() + v.name for v in getattr(self, k).all() ])) return name |