From f176337353eab0517b3795706f44591e647f40ce Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Fri, 15 Oct 2010 16:48:26 +0200 Subject: [PATCH] Crude workaround for pylint breakage The way we currently call pylint, the exact order it inspect modules in lib/http/ depends on the filesystem order. This is not good, and if lib/http/server.py is loaded before lib/http/__init__.py, it will throw a "R0921:763:HttpMessageReader: Abstract class not referenced" (as that class is used in server.py). For the short-term fix, we just add server.py after "ganeti", so that it gets parsed (again?) and pylint sees the usage of the class. Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Michael Hanselmann <hansmi@google.com> --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 859339ca0..7384d3d03 100644 --- a/Makefile.am +++ b/Makefile.am @@ -449,6 +449,7 @@ check_python_code = \ lint_python_code = \ ganeti \ + ganeti/http/server.py \ $(dist_sbin_SCRIPTS) \ $(dist_tools_SCRIPTS) \ $(pkglib_python_scripts) \ -- GitLab