Re: [ovs-dev] [PATCH] utilities: Make ovs-pipegen.py Python 3 friendly

2018-03-14 Thread Russell Bryant
I've applied this to master. I'll also submit a follow-up patch in a moment which adds this script to the list of Python files checked with flake8, which will help prevent some basic compatibility issues in the future. On Tue, Mar 13, 2018 at 12:48 PM, Timothy Redaelli

[ovs-dev] [PATCH] utilities: Make ovs-pipegen.py Python 3 friendly

2018-03-13 Thread Timothy Redaelli
Replace "print f" with "print(f)" and "xrange" with "range". The changes are backward compatibile with Python 2. Signed-off-by: Timothy Redaelli --- utilities/ovs-pipegen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utilities/ovs-pipegen.py