mercurial/help.py
changeset 44027 52f0140c2604
parent 43871 1390bb81163e
child 44295 142d2a4cb69a
--- 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, []):