minor: fix trace msg: s/loaded/loading (#6798)

This commit is contained in:
Daniel Hahler 2020-02-23 17:12:30 +01:00 committed by GitHub
parent 706ea86bba
commit 9928c7794b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -515,7 +515,7 @@ class PytestPluginManager(PluginManager):
if path and path.relto(dirpath) or path == dirpath:
assert mod not in mods
mods.append(mod)
self.trace("loaded conftestmodule %r" % (mod))
self.trace("loading conftestmodule {!r}".format(mod))
self.consider_conftest(mod)
return mod