From 3f3d500152baa55e9d88c27ced0e83101699472c Mon Sep 17 00:00:00 2001 From: Ricard Bejarano Date: Mon, 26 Apr 2021 19:06:29 +0200 Subject: [PATCH] fixed missing whitespace in plan() debug logging When debug logging is enabled, the plan() function logs lines like: Plan: DEBUG: __init__: Creates=13, Updates=0, Deletes=0Existing=0 Where a space between "Deletes=0" and "Existing=0" is missing. This adds it. --- octodns/provider/plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octodns/provider/plan.py b/octodns/provider/plan.py index af6863a..69bd2b2 100644 --- a/octodns/provider/plan.py +++ b/octodns/provider/plan.py @@ -50,7 +50,7 @@ class Plan(object): except AttributeError: existing_n = 0 - self.log.debug('__init__: Creates=%d, Updates=%d, Deletes=%d' + self.log.debug('__init__: Creates=%d, Updates=%d, Deletes=%d ' 'Existing=%d', self.change_counts['Create'], self.change_counts['Update'],