From b8e2ec124b1783f0e57ea435da0e93ef694eb750 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 14 Oct 2019 07:48:17 -0700 Subject: [PATCH] Fix Manager comment wrapping --- octodns/manager.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/octodns/manager.py b/octodns/manager.py index bc78f5b..3c91aa9 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -283,8 +283,9 @@ class Manager(object): self.log.info('sync: sources=%s -> targets=%s', sources, targets) try: - # rather than using a list comprehension, we break this loop out - # so that the `except` block below can reference the `source` + # rather than using a list comprehension, we break this loop + # out so that the `except` block below can reference the + # `source` collected = [] for source in sources: collected.append(self.providers[source]) @@ -410,8 +411,9 @@ class Manager(object): .format(zone_name)) try: - # rather than using a list comprehension, we break this loop out - # so that the `except` block below can reference the `source` + # rather than using a list comprehension, we break this loop + # out so that the `except` block below can reference the + # `source` collected = [] for source in sources: collected.append(self.providers[source])