diff options
Diffstat (limited to 'archaeological_operations/management')
-rw-r--r-- | archaeological_operations/management/commands/reindex_acts.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archaeological_operations/management/commands/reindex_acts.py b/archaeological_operations/management/commands/reindex_acts.py index 70c97e0fd..a701c3fb7 100644 --- a/archaeological_operations/management/commands/reindex_acts.py +++ b/archaeological_operations/management/commands/reindex_acts.py @@ -54,5 +54,6 @@ class Command(BaseCommand): tobefix.append(admin_act) print "To be fix" for item in tobefix: - print item.signature_date.year, item.index, item.act_type, \ - item.operation or item.associated_file + print u";".join([unicode(v) for v in (item.signature_date.year, + item.index, item.act_type, + item.operation or item.associated_file)]) |