diff --git a/octodns/provider/mythicbeasts.py b/octodns/provider/mythicbeasts.py index ca03b37..3d1f5ec 100644 --- a/octodns/provider/mythicbeasts.py +++ b/octodns/provider/mythicbeasts.py @@ -339,7 +339,7 @@ class MythicBeastsProvider(BaseProvider): base = '{} {} {} {}'.format(action, hostname, ttl, _type) - if re.match('[A]{1,4}', _type) is not None: + if _type in ('A', 'AAAA'): for value in values: commands.append('{} {}'.format(base, value))