Skip to content
Snippets Groups Projects
Commit 983126c0 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

help: ignore argument passed to doc loader

The API changed at Mercurial e0c572d4d112.
parent 596a7219
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,8 @@
})
helpdir = os.path.join(os.path.dirname(__file__), 'help')
entry = (['git'], _("Working with Git Repositories"),
lambda: open(os.path.join(helpdir, 'git.rst')).read())
# Mercurial >= 3.6: doc(ui)
lambda *args: open(os.path.join(helpdir, 'git.rst')).read())
insort(help.helptable, entry)
def reposetup(ui, repo):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment