From a6d7c65d3f731bdcc75c86362b0bb43f8895cd32 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 30 Nov 2011 23:45:50 +0100 Subject: Make tests working independently of the locale set on the system. --- json_diff.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'json_diff.py') diff --git a/json_diff.py b/json_diff.py index cc8bfa7..e07d598 100755 --- a/json_diff.py +++ b/json_diff.py @@ -32,7 +32,7 @@ import logging from optparse import OptionParser __author__ = "Matěj Cepl" -__version__ = "1.2.0" +__version__ = "1.2.1" import locale @@ -358,7 +358,7 @@ def main(sys_args): print(unicode(HTMLFormatter(diff_res)).encode("utf-8")) else: outs = json.dumps(diff_res, indent=4, ensure_ascii=False) - print(outs.encode(locale.getpreferredencoding())) + print(outs.encode(locale.getpreferredencoding(do_setlocale=False))) if len(diff_res) > 0: return 1 -- cgit