linkchecker/linkcheck/GopherUrlData.py
2000-02-26 10:24:46 +00:00

9 lines
180 B
Python

from UrlData import UrlData
class GopherUrlData(UrlData):
"Url link with gopher scheme"
def __str__(self):
return "Gopher link\n"+UrlData.__str__(self)