1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Fix method name in exception log

This commit is contained in:
Ross McFarland
2024-03-11 14:53:06 -07:00
parent b539cb0a4f
commit afee52b181

View File

@@ -402,7 +402,7 @@ class Manager(object):
return getattr(module, class_name), module_name, version
except AttributeError:
self.log.exception(
'_get_{}_class: Unable to get class %s from module %s',
'_get_named_class: Unable to get class %s from module %s',
class_name,
module,
)