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 | 0226481a3a81d605cf81366c78ac5ea9af506cfb (patch) | |
tree | 615e27272af64ea1e510d12c28a28fdd0d64844d | |
parent | 543b81fccff95e040cd77dee9804b2328369fc69 (diff) | |
download | Ishtar-0226481a3a81d605cf81366c78ac5ea9af506cfb.tar.bz2 Ishtar-0226481a3a81d605cf81366c78ac5ea9af506cfb.zip |
Minor: change outpu of reindex script
-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)]) |