Browse Source

Represent plan_output_fh less verbosely.

Co-authored-by: Ross McFarland <ross@github.com>
pull/689/head
Christian Funkhouser 5 years ago
committed by GitHub
parent
commit
aa93e20f2e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/manager.py

+ 1
- 1
octodns/manager.py View File

@ -272,7 +272,7 @@ class Manager(object):
self.log.info('sync: eligible_zones=%s, eligible_targets=%s, '
'dry_run=%s, force=%s, plan_output_fh=%s',
eligible_zones, eligible_targets, dry_run, force,
plan_output_fh)
getattr(plan_output_fh, 'name', plan_output_fh.__class__.__name__))
zones = self.config['zones'].items()
if eligible_zones:


Loading…
Cancel
Save