mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-25 02:10:24 +00:00
10 lines
180 B
Python
10 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)
|
||
|
|
|
||
|
|
|