From da4c7f911228efc4b44b65c4cebf991d38f27da9 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Fri, 10 Jan 2020 17:08:42 +0100 Subject: [PATCH] python: skip line length check in license line Properly mark the long line with the license classifier in setup.py: the classifier is long on its own, and changing the code to stay within 79 characters would result in worse code. --- python/setup.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py.in b/python/setup.py.in index 0c8cff13b..f57b5ee5b 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -39,7 +39,7 @@ This package contains the Python bindings for libguestfs. 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', - 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', + 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', # noqa 'Operating System :: POSIX :: Linux', 'Programming Language :: C', 'Programming Language :: Python :: 2',