summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-31 22:01:28 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-31 22:01:28 +0100
commit198f75e96ea58c50b56c881d18a9c6b929d401a3 (patch)
tree28266d825b1a90d212438f206e765d7363cdc828
parente07e9db1e0a2b763d99168182a61b3b5ad024653 (diff)
downloadIshtar-198f75e96ea58c50b56c881d18a9c6b929d401a3.tar.bz2
Ishtar-198f75e96ea58c50b56c881d18a9c6b929d401a3.zip
Container sheet: fix location display
-rw-r--r--archaeological_warehouse/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py
index 798ab78e0..a40bfd321 100644
--- a/archaeological_warehouse/models.py
+++ b/archaeological_warehouse/models.py
@@ -451,7 +451,7 @@ class Container(LightHistorizedItem, ImageModel):
def precise_location(self):
location = self.location.name
if self.cached_division:
- location += self.cached_division
+ location += u" " + self.cached_division
return location
def get_localisations(self):