Merge pull request #285 from cjmayo/python3_34

{python3_34} fixes for Python 3: fix test_misc
This commit is contained in:
anarcat 2019-09-11 09:48:14 -04:00 committed by GitHub
commit 2239458966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):