1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

MythicBeastsProvider python3

This commit is contained in:
Ross McFarland
2019-10-05 09:10:59 -07:00
parent 0078198500
commit 484a5118f4
2 changed files with 7 additions and 7 deletions

View File

@@ -328,7 +328,7 @@ class MythicBeastsProvider(BaseProvider):
exists = True
for line in resp.content.splitlines():
match = MythicBeastsProvider.RE_POPLINE.match(line)
match = MythicBeastsProvider.RE_POPLINE.match(line.decode("utf-8"))
if match is None:
self.log.debug('failed to match line: %s', line)