diff options
Diffstat (limited to 'scripts/external_libs')
-rw-r--r-- | scripts/external_libs/texttable-0.8.4/texttable.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/external_libs/texttable-0.8.4/texttable.py b/scripts/external_libs/texttable-0.8.4/texttable.py index 775a43e5..684e63bd 100644 --- a/scripts/external_libs/texttable-0.8.4/texttable.py +++ b/scripts/external_libs/texttable-0.8.4/texttable.py @@ -365,7 +365,11 @@ class Texttable: try: f = float(x) except: - return str(x) + try: + return str(x) + except: + return x.encode('utf-8') + n = self._precision dtype = self._dtype[i] |