Re: [ovs-dev] [PATCH 1/3] ovsdb-doc: Fix syntax warning with Python 3.12 and flake8 issues.

2024-04-11 Thread Simon Horman
On Thu, Apr 11, 2024 at 12:43:28AM +0200, Ilya Maximets wrote: > ovsdb-doc script generates the following syntax warning while running > with Python 3.12: > > /ovsdb/ovsdb-doc:240: SyntaxWarning: invalid escape sequence '\{' > s += """ > > This doesn't cause a build failure because so far

[ovs-dev] [PATCH 1/3] ovsdb-doc: Fix syntax warning with Python 3.12 and flake8 issues.

2024-04-10 Thread Ilya Maximets
ovsdb-doc script generates the following syntax warning while running with Python 3.12: /ovsdb/ovsdb-doc:240: SyntaxWarning: invalid escape sequence '\{' s += """ This doesn't cause a build failure because so far it's only a warning, but it will become a syntax error in the future. Fix that