Unicode data in fields break the csv export with an UnicodeEncodeError exception (mixins.py line 92, in build_csv_response).
Validated a quick fix, that would require using the unicodecsv drop-in replacement for the standard csv module.
In mixins.py, just replace:
import csv
by
import unicodecsv as csv