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 | a96f115b15e5e436204361e74a8f8301caf202dd (patch) | |
tree | 796bed23b921d02729bfead39956225f44a42a2d /archaeological_operations/models.py | |
parent | bef605e10e590d9277af782594091a1a31072246 (diff) | |
download | Ishtar-a96f115b15e5e436204361e74a8f8301caf202dd.tar.bz2 Ishtar-a96f115b15e5e436204361e74a8f8301caf202dd.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 |