summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-08-29 11:15:25 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-08-29 11:15:25 +0200
commit9ce6bdd133dddfc291a814a3adc5ae344203092b (patch)
tree42b8ba3dc8113fd9b4b7fd90cfd43bde1d334a65 /archaeological_finds
parent44f79d80f9cc06ddc3c42fd987ed2019ed7abe8b (diff)
downloadIshtar-9ce6bdd133dddfc291a814a3adc5ae344203092b.tar.bz2
Ishtar-9ce6bdd133dddfc291a814a3adc5ae344203092b.zip
Wizards: fix image and file initialization on modify
Diffstat (limited to 'archaeological_finds')
-rw-r--r--archaeological_finds/models_finds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py
index 6154fb74d..59b8eb1d0 100644
--- a/archaeological_finds/models_finds.py
+++ b/archaeological_finds/models_finds.py
@@ -792,7 +792,7 @@ class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, ImageModel,
bf = self.get_first_base_find()
if not bf or not bf.context_record or not bf.context_record.operation:
return ""
- return "{}-{}".format(
+ return u"{}-{}".format(
bf.context_record.operation.get_reference(),
self.index)