Browse Source

Fix type-o in _build_kwargs notification

pull/1230/head
Ross McFarland 1 year ago
parent
commit
76c5127e3e
No known key found for this signature in database GPG Key ID: 943B179E15D3B22A
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      octodns/manager.py

+ 1
- 0
CHANGELOG.md View File

@ -6,6 +6,7 @@
removed in 2.x
* Add YamlProvider.order_mode to allow picking between natural (human)
the default when enforce_order=True and simple `sort`.
* Fix type-o in _build_kwargs handler notification
## v1.10.0 - 2024-10-06 - Lots of little stuff


+ 1
- 1
octodns/manager.py View File

@ -428,7 +428,7 @@ class Manager(object):
# they're sensitive so just provide the key, and even
# that only at debug level.
self.log.debug(
'_build_kwargs: failed to find handler for key "%sp ',
'_build_kwargs: failed to find handler for key "%s"',
k,
)
else:


Loading…
Cancel
Save