mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-02 20:04:43 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@5 e7d03fd6-7b0d-0410-9947-9c21f3af8025
13 lines
287 B
Python
13 lines
287 B
Python
from UrlData import UrlData
|
|
|
|
class HttpsUrlData(UrlData):
|
|
"Url link with https scheme"
|
|
|
|
def check(self, config):
|
|
self.setWarning("Https url ignored")
|
|
self.logMe(config)
|
|
|
|
def __str__(self):
|
|
return "HTTPS link\n"+UrlData.__str__(self)
|
|
|
|
|