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

Fixed extraneous whitespace in format in UltraDNS

This commit is contained in:
Ross McFarland
2021-05-27 15:19:33 -07:00
committed by GitHub
parent 4b6fd8b4a1
commit e816e8e49b

View File

@@ -459,7 +459,7 @@ class UltraProvider(BaseProvider):
if existing_type == "ALIAS":
existing_type = "APEXALIAS"
path = '/v2/zones/{}/rrsets/{}/{ }'.format(zone_name,
path = '/v2/zones/{}/rrsets/{}/{}'.format(zone_name,
existing_type,
existing.fqdn)
self._delete(path, json_response=False)