From c98022094797242cd183dc982247449ad5c5985f Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 14 Oct 2025 11:11:24 -0700 Subject: [PATCH] Fix a couple type-o's and stale bits in Manager --- octodns/manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/octodns/manager.py b/octodns/manager.py index 612b654..2244f36 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -249,7 +249,7 @@ class Manager(object): self.log.info( '_preprocess_zones: dynamic zone=%s, sources=%s', name, - (s.id for s in sources), + list(s.id for s in sources), ) candidates = set() for source in sources: @@ -680,12 +680,12 @@ class Manager(object): s for s in sources if s in self.active_sources ]: self.log.warning( - '_get_sources: no active souces configured for %s', + '_get_sources: no active sources configured for %s', decoded_zone_name, ) return None - self.log.info('sync: sources=%s', sources) + self.log.info('_get_sources: sources=%s', sources) try: # rather than using a list comprehension, we break this loop