From f14c1f0b644278f7990f7c960c692d8ae6f4c513 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sat, 29 Jul 2023 10:25:28 -0700 Subject: [PATCH] formatting --- octodns/manager.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/octodns/manager.py b/octodns/manager.py index a7def50..95b8ba2 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -508,12 +508,14 @@ class Manager(object): # we've found a dynamic config element # find its sources - sources = sources or self._get_sources(name, config, eligible_sources) + sources = sources or self._get_sources( + name, config, eligible_sources + ) self.log.info('sync: dynamic zone=%s, sources=%s', name, sources) for source in sources: if not hasattr(source, 'list_zones'): raise ManagerException( - f'dynamic zone={name} includes a source that does not support `list_zones`' + f'dynamic zone={name} includes a source, {source.id}, that does not support `list_zones`' ) for zone_name in source.list_zones(): if zone_name in zones: