From 5117f822177ca0e42f3e2d88dec4061b4cd711b3 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Fri, 10 Sep 2010 13:48:53 +0200 Subject: [PATCH] Fix pylint warning in http/__init__.py My bad for not seeing this before: R0201:614:HttpBase.GetSslCiphers: Method could be a function Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/http/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/__init__.py b/lib/http/__init__.py index 1e39f2197..8767272be 100644 --- a/lib/http/__init__.py +++ b/lib/http/__init__.py @@ -611,7 +611,7 @@ class HttpBase(object): return OpenSSL.SSL.Connection(ctx, sock) - def GetSslCiphers(self): + def GetSslCiphers(self): # pylint: disable-msg=R0201 """Returns the ciphers string for SSL. """ -- GitLab