diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-10-28 12:09:28 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-10-28 12:09:28 +0100 |
commit | 40c22649a813ace2ac1e64c67456028827306d54 (patch) | |
tree | ac3390dd1254cb32a763b62313e31ddebe7bf241 /archaeological_operations | |
parent | 8eaac41ffb80a878a7492bd633f4d53aa47219e3 (diff) | |
download | Ishtar-40c22649a813ace2ac1e64c67456028827306d54.tar.bz2 Ishtar-40c22649a813ace2ac1e64c67456028827306d54.zip |
Fix statistics for operations - Warehouse: long timeout for stats
Diffstat (limited to 'archaeological_operations')
-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 b547db375..3538db2f8 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1546,7 +1546,7 @@ class Operation(ClosedItem, DocumentItem, BaseHistorizedItem, QRCodeItem, for res in q.all(): label = str(res['object_types__label']) if label == 'None': - label = _("No type") + label = str(_("No type")) nbs.append( (label, Find.objects.filter( |