Fix indentationerror caused by the fix for Issue #126.

This commit is contained in:
Ross Poulton 2010-01-20 20:00:16 +00:00
parent f3d0bed5a6
commit dfc2a2f768
2 changed files with 3 additions and 1 deletions

View File

@ -39,3 +39,5 @@ Andreas Kotowicz.
2010-01-20 r150 Issue #127 Add german transalation, courtesy of openinformation.org
2009-01-20 r151 Issue #128 If queue name has a dash in it, email imported failed. Thanks to enix.org for the patch.
2010-01-21 r152 Fix indentation error caused by issue #126.

View File

@ -849,7 +849,7 @@ def run_report(request, report):
for record in report_output:
line = []
for c in columns:
c = c.encode('utf-8')
c = c.encode('utf-8')
line.append(record[c])
data.append(line)