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
+1 -1
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)