Browse Source

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.
pull/700/head
Ricard Bejarano 5 years ago
parent
commit
3f3d500152
No known key found for this signature in database GPG Key ID: 98E8072CB960073F
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/plan.py

+ 1
- 1
octodns/provider/plan.py View File

@ -50,7 +50,7 @@ class Plan(object):
except AttributeError: except AttributeError:
existing_n = 0 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', 'Existing=%d',
self.change_counts['Create'], self.change_counts['Create'],
self.change_counts['Update'], self.change_counts['Update'],


Loading…
Cancel
Save