Revision: 6624 Author: shizhao Date: 2009-04-18 15:47:05 +0000 (Sat, 18 Apr 2009)
Log Message: ----------- fix time
Modified Paths: -------------- trunk/pywikipedia/weblinkchecker.py
Modified: trunk/pywikipedia/weblinkchecker.py =================================================================== --- trunk/pywikipedia/weblinkchecker.py 2009-04-18 15:41:40 UTC (rev 6623) +++ trunk/pywikipedia/weblinkchecker.py 2009-04-18 15:47:05 UTC (rev 6624) @@ -607,7 +607,7 @@ # if the first time we found this link longer than a week ago, # it should probably be fixed or removed. We'll list it in a file # so that it can be removed manually. - if timeSinceFirstFound > 60 * 60 * 2: + if timeSinceFirstFound > 60 * 60 * 24 * 7: # search for archived page iac = InternetArchiveConsulter(url) archiveURL = iac.getArchiveURL()
pywikipedia-svn@lists.wikimedia.org