mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 19:11:06 +00:00
Merge pull request #285 from cjmayo/python3_34
{python3_34} fixes for Python 3: fix test_misc
This commit is contained in:
commit
2239458966
1 changed files with 2 additions and 1 deletions
|
|
@ -21,6 +21,7 @@ Handle itms-services URLs.
|
|||
from . import urlbase
|
||||
from .. import log, LOG_CHECK
|
||||
|
||||
from builtins import str as str_text
|
||||
|
||||
class ItmsServicesUrl(urlbase.UrlBase):
|
||||
"""Apple iOS application download URLs."""
|
||||
|
|
@ -33,7 +34,7 @@ class ItmsServicesUrl(urlbase.UrlBase):
|
|||
|
||||
def local_check(self):
|
||||
"""Disable content checks."""
|
||||
log.debug(LOG_CHECK, "Checking %s", unicode(self))
|
||||
log.debug(LOG_CHECK, "Checking %s", str_text(self))
|
||||
pass
|
||||
|
||||
def check_content(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue