From c90afb3994628e41de09daa01496b1e0ac95c195 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 14 Nov 2023 07:27:20 -0800 Subject: [PATCH] YamlProvider no longer needs to copy over _octodns itself --- octodns/provider/yaml.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/octodns/provider/yaml.py b/octodns/provider/yaml.py index 23e65ef..8430091 100644 --- a/octodns/provider/yaml.py +++ b/octodns/provider/yaml.py @@ -386,8 +386,6 @@ class YamlProvider(BaseProvider): if record.ttl == self.default_ttl: # ttl is the default, we don't need to store it del d['ttl'] - if record._octodns: - d['octodns'] = record._octodns # we want to output the utf-8 version of the name data[record.decoded_name].append(d)