Skip to content
This repository has been archived by the owner on Nov 27, 2017. It is now read-only.

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermendes committed Jun 10, 2016
1 parent 9fcdeb0 commit 216c4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcrowds_data/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def csv_export(short_name):

keys = [r.dictize().keys() for r in results]
keys = list(set(list(itertools.chain(*keys))))
info_keys = [r.info.keys() for r in results if isinstance(row.info, dict)]
info_keys = [r.info.keys() for r in results if isinstance(r.info, dict)]
info_keys = list(set(list(itertools.chain(*info_keys))))
writer.writerow(keys + info_keys)

Expand Down

0 comments on commit 216c4c7

Please sign in to comment.