summaryrefslogtreecommitdiff
path: root/archaeological_operations/management
diff options
context:
space:
mode:
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
commitf3dc29e49d5951d18eb134398018779ab328532f (patch)
tree615e27272af64ea1e510d12c28a28fdd0d64844d /archaeological_operations/management
parent33c97c336a858ac333ecbc97f918f1d0331a57b7 (diff)
downloadIshtar-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.py5
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)])