mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-15 18:42:35 +02:00
Fix indentationerror caused by the fix for Issue #126.
This commit is contained in:
@ -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)
|
||||
|
||||
|
Reference in New Issue
Block a user