From bc6bd34ffc4ee1669a911f8a90099d5e26c8d856 Mon Sep 17 00:00:00 2001 From: calvin Date: Tue, 31 Aug 2004 21:42:34 +0000 Subject: [PATCH] fix password manager interface git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1654 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/robotparser2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linkcheck/robotparser2.py b/linkcheck/robotparser2.py index fb6de0f2..3d8ec99d 100755 --- a/linkcheck/robotparser2.py +++ b/linkcheck/robotparser2.py @@ -40,11 +40,11 @@ class PasswordManager (object): self.user = user self.password = password - def add_password (realm, uri, user, passwd): + def add_password (self, realm, uri, user, passwd): # we have already our password pass - def find_user_password (realm, authuri): + def find_user_password (self, realm, authuri): return self.user, self.password