On 19 May 2017 at 05:35, Marcin Mirecki <[email protected]> wrote: > On Fri, May 19, 2017 at 2:16 PM, Numan Siddique <[email protected]> wrote: > >> >> ---------- Forwarded message ---------- >> From: Numan Siddique <[email protected]> >> Date: Fri, May 19, 2017 at 11:09 AM >> Subject: Re: [ovs-dev] [PATCH] Fix flake8 check >> To: Terry Wilson <[email protected]> >> Cc: ovs dev <[email protected]> >> >> >> >> >> On Fri, May 19, 2017 at 9:39 AM, Terry Wilson <[email protected]> wrote: >> >>> Stop occluding the previous definition of filename. >>> >>> Signed-off-by: Terry Wilson <[email protected]> >>> >> >> Acked-by: Numan Siddique <[email protected]> >> >> >> >>> --- >>> Documentation/conf.py | 6 +++--- >>> 1 file changed, 3 insertions(+), 3 deletions(-) >>> >>> diff --git a/Documentation/conf.py b/Documentation/conf.py >>> index d70ee6b..62531dd 100644 >>> --- a/Documentation/conf.py >>> +++ b/Documentation/conf.py >>> @@ -121,6 +121,6 @@ _man_pages = [ >>> >>> # Generate list of (path, name, description, [author, ...], section) >>> man_pages = [ >>> - ('ref/%s' % filename, filename.split('.', 1)[0], >>> - description, [author], filename.split('.', 1)[1]) >>> - for filename, description in _man_pages] >>> + ('ref/%s' % fname, fname.split('.', 1)[0], >>> + description, [author], fname.split('.', 1)[1]) >>> + for fname, description in _man_pages] >>> -- >>> 1.8.3.1 >>> >>> _______________________________________________ >>> dev mailing list >>> [email protected] >>> https://mail.openvswitch.org/mailman/listinfo/ovs-dev >>> >> >> >> > Tested-by: Marcin Mirecki <[email protected]>
Thanks all on this, looks like the equivalent patch here was merged to the same effect: https://mail.openvswitch.org/pipermail/ovs-dev/2017-May/332669.html _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
