Re: [ovs-dev] [PATCH 07/11] python: Use six.unichr().

2016-02-02 Thread Ben Pfaff
On Fri, Jan 22, 2016 at 09:32:29PM -0500, Russell Bryant wrote: > six.unichr() is equivalent to unichr() in Python 2 > and chr() in Python 3. > > Signed-off-by: Russell Bryant Acked-by: Ben Pfaff ___ dev mailing list dev@openvswitch.org http://openvsw

[ovs-dev] [PATCH 07/11] python: Use six.unichr().

2016-01-22 Thread Russell Bryant
six.unichr() is equivalent to unichr() in Python 2 and chr() in Python 3. Signed-off-by: Russell Bryant --- python/ovs/json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ovs/json.py b/python/ovs/json.py index a59a0c2..db74397 100644 --- a/python/ovs/json.py +++ b/