mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
fixed missing whitespace in plan() debug logging
When debug logging is enabled, the plan() function logs lines like: <previous output> Plan: DEBUG: __init__: Creates=13, Updates=0, Deletes=0Existing=0 <following output> Where a space between "Deletes=0" and "Existing=0" is missing. This adds it.
This commit is contained in:
@@ -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'],
|
||||
|
Reference in New Issue
Block a user