Remove traces of MacOS9 support.

Fix for issue #7908
This commit is contained in:
Ronald Oussoren 2010-05-05 19:11:21 +00:00
parent a045f191b4
commit 94f25283c9
20 changed files with 52 additions and 196 deletions

View file

@ -64,12 +64,6 @@ from Tkinter import *
import tktools
import webchecker
# Override some for a weaker platform
if sys.platform == 'mac':
webchecker.DEFROOT = "http://grail.cnri.reston.va.us/"
webchecker.MAXPAGE = 50000
webchecker.verbose = 4
def main():
try:
opts, args = getopt.getopt(sys.argv[1:], 't:m:qva')

View file

@ -97,8 +97,6 @@ class Sucker(webchecker.Checker):
path = path + "index.html"
if os.sep != "/":
path = os.sep.join(path.split("/"))
if os.name == "mac":
path = os.sep + path
path = os.path.join(host, path)
return path