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

Remove a couple of stray prints

This commit is contained in:
Ross McFarland
2021-08-23 15:37:02 -07:00
parent 64072f9f43
commit efdb4866c0
2 changed files with 0 additions and 2 deletions

View File

@@ -240,7 +240,6 @@ class Ns1Client(object):
def zones_retrieve(self, name):
if name not in self._zones_cache:
self._zones_cache[name] = self._try(self._zones.retrieve, name)
print(f'insert {name} to cache with val {self._zones_cache[name]}')
return self._zones_cache[name]
def _try(self, method, *args, **kwargs):

View File

@@ -71,7 +71,6 @@ class TestAcmeMangingProcessor(TestCase):
], sorted([r.name for r in got.records]))
managed = None
for record in got.records:
print(record.name)
if record.name.endswith('managed'):
managed = record
break