diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-06-16 00:03:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-06-16 00:03:41 +0200 |
commit | f3dc29e49d5951d18eb134398018779ab328532f (patch) | |
tree | 615e27272af64ea1e510d12c28a28fdd0d64844d /archaeological_operations/management | |
parent | 33c97c336a858ac333ecbc97f918f1d0331a57b7 (diff) | |
download | Ishtar-f3dc29e49d5951d18eb134398018779ab328532f.tar.bz2 Ishtar-f3dc29e49d5951d18eb134398018779ab328532f.zip |
Minor: change outpu of reindex script
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)]) |