diff -r 44b03c0313aa -r 52f0140c2604 mercurial/help.py --- a/mercurial/help.py Sat Dec 28 23:08:57 2019 -0500 +++ b/mercurial/help.py Sat Dec 28 23:35:13 2019 -0500 @@ -313,9 +313,9 @@ """Return a delayed loader for help/topic.txt.""" def loader(ui): - package = b'helptext' + package = b'mercurial.helptext' if subdir: - package = b'helptext' + b'.' + subdir + package += b'.' + subdir with resourceutil.open_resource(package, topic + b'.txt') as fp: doc = gettext(fp.read()) for rewriter in helphooks.get(topic, []):