report correct file for callback

pull/19132/merge
Brian Coca 7 years ago
parent 5e46a0add6
commit d850992526

@ -70,7 +70,7 @@ class CallbackBase(AnsiblePlugin):
name = getattr(self, 'CALLBACK_NAME', 'unnamed')
ctype = getattr(self, 'CALLBACK_TYPE', 'old')
version = getattr(self, 'CALLBACK_VERSION', '1.0')
self._display.vvvv('Loading callback plugin %s of type %s, v%s from %s' % (name, ctype, version, __file__))
self._display.vvvv('Loading callback plugin %s of type %s, v%s from %s' % (name, ctype, version, sys.modules[self.__module__].__file__))
self.disabled = False

Loading…
Cancel
Save