From a62c02a9cfd41dfb6a6240d170aaa09b0f8b20cd Mon Sep 17 00:00:00 2001 From: Jakub Warmuz Date: Fri, 21 Nov 2014 21:42:25 +0100 Subject: [PATCH] Fix no-self-argument --- letsencrypt/client/validator.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/letsencrypt/client/validator.py b/letsencrypt/client/validator.py index 99532f1a2..c647f7d2b 100644 --- a/letsencrypt/client/validator.py +++ b/letsencrypt/client/validator.py @@ -2,11 +2,11 @@ class Validator(object): """ This Class will contain an API to validate configurations. """ - def redirect(name): + def redirect(self, name): return - def ocsp_stapling(name): + def ocsp_stapling(self, name): return - def https(names): + def https(self, names): return - def hsts(name): + def hsts(self, name): return