fix variable typo

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1692 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2004-09-03 06:39:37 +00:00
parent d0d1c5d69f
commit 751d60f924

View file

@ -170,7 +170,7 @@ class Cache (object):
self.lock.acquire()
try:
if redirect in self.checked:
url_data.copy_from_cache(self.checked[key])
url_data.copy_from_cache(self.checked[redirect])
return True
return False
finally: