diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-27 20:44:52 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:27 +0200 |
commit | 0f3229a119e53054d98c5e878a9581403628cd08 (patch) | |
tree | e07ad2e91e2544f7b2d61e8f3f653fdda26bfd52 /archaeological_operations/lookups.py | |
parent | cfabd636d0a6d84e8377be3e4d041b4e75ddda9a (diff) | |
download | Ishtar-0f3229a119e53054d98c5e878a9581403628cd08.tar.bz2 Ishtar-0f3229a119e53054d98c5e878a9581403628cd08.zip |
Migrate to python 3 - Clean old migrations and some old scripts
Diffstat (limited to 'archaeological_operations/lookups.py')
-rw-r--r-- | archaeological_operations/lookups.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/lookups.py b/archaeological_operations/lookups.py index c4027c2d2..8329da709 100644 --- a/archaeological_operations/lookups.py +++ b/archaeological_operations/lookups.py @@ -43,7 +43,7 @@ class ArchaeologicalSiteLookup(LookupChannel): 'name')[:20] def format_item_display(self, item): - return u"<span class='ajax-label'>%s</span>" % unicode(item) + return "<span class='ajax-label'>%s</span>".format(item) @register('parcel') |