Repository: mesos Updated Branches: refs/heads/master 14f7967ef -> 1d68eed90
Added support for non-ascii characters to apply-review.sh. Review: https://reviews.apache.org/r/39087 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e61ec3f6 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/e61ec3f6 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/e61ec3f6 Branch: refs/heads/master Commit: e61ec3f636fab73250ec12af90e779a319954a3e Parents: 14f7967 Author: Gastón Kleiman <[email protected]> Authored: Sat Oct 10 08:51:04 2015 -0700 Committer: Joris Van Remoortere <[email protected]> Committed: Sat Oct 10 08:52:34 2015 -0700 ---------------------------------------------------------------------- support/jsonurl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/e61ec3f6/support/jsonurl.py ---------------------------------------------------------------------- diff --git a/support/jsonurl.py b/support/jsonurl.py index f6b54d8..72a9104 100755 --- a/support/jsonurl.py +++ b/support/jsonurl.py @@ -22,4 +22,4 @@ for arg in sys.argv[2:]: print >> sys.stderr, "'" + arg + "' was not found" sys.exit(1) -print data +print data.encode("utf-8")
