Browse Source
Merge pull request #4422 from saurabh6790/revert_encode
[fix] revert unicode decoding
version-14
Saurabh
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
3 deletions
-
frappe/utils/xlsxutils.py
|
|
@@ -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) |
|
|
|