Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hg-git
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
heptapod
hg-git
Commits
983126c0
Commit
983126c0
authored
9 years ago
by
Yuya Nishihara
Browse files
Options
Downloads
Patches
Plain Diff
help: ignore argument passed to doc loader
The API changed at Mercurial e0c572d4d112.
parent
596a7219
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hggit/__init__.py
+2
-1
2 additions, 1 deletion
hggit/__init__.py
with
2 additions
and
1 deletion
hggit/__init__.py
+
2
−
1
View file @
983126c0
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment