mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
Merge pull request #63 from jsdalton/fix_unicode_error_in_html_output
Fix unicode error in html output
This commit is contained in:
+1
-1
@@ -309,7 +309,7 @@ class TablibTestCase(unittest.TestCase):
|
||||
def test_unicode_append(self):
|
||||
"""Passes in a single unicode character and exports."""
|
||||
|
||||
new_row = ('å', 'é')
|
||||
new_row = (u'å', u'é')
|
||||
data.append(new_row)
|
||||
|
||||
data.json
|
||||
|
||||
Reference in New Issue
Block a user