Browse Source

Merge pull request #4422 from saurabh6790/revert_encode

[fix] revert unicode decoding
version-14
Saurabh 7 years ago
committed by GitHub
parent
commit
26bad9c672
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      frappe/utils/xlsxutils.py

+ 0
- 3
frappe/utils/xlsxutils.py View File

@@ -30,9 +30,6 @@ def make_xlsx(data, sheet_name, wb=None):
else:
value = item

if isinstance(value, basestring):
value = value.encode('unicode_escape').decode('utf-8')

clean_row.append(value)

ws.append(clean_row)


Loading…
Cancel
Save