mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 18:31:10 +01:00
Fix indentationerror caused by the fix for Issue #126.
This commit is contained in:
parent
f3d0bed5a6
commit
dfc2a2f768
@ -39,3 +39,5 @@ Andreas Kotowicz.
|
|||||||
2010-01-20 r150 Issue #127 Add german transalation, courtesy of openinformation.org
|
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.
|
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.
|
||||||
|
@ -849,7 +849,7 @@ def run_report(request, report):
|
|||||||
for record in report_output:
|
for record in report_output:
|
||||||
line = []
|
line = []
|
||||||
for c in columns:
|
for c in columns:
|
||||||
c = c.encode('utf-8')
|
c = c.encode('utf-8')
|
||||||
line.append(record[c])
|
line.append(record[c])
|
||||||
data.append(line)
|
data.append(line)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user