Skip to content
Snippets Groups Projects
Commit 23ca66ea authored by Alexey Sokolov's avatar Alexey Sokolov
Browse files

Fix "hg outgoing" for mercurial versions which look like 1.6.x

Previous commit (hg-663973c89351) assumed that there's nothing between
1.6 and 1.7
But 1.6.3 is more than 1.6, while still less than 1.7
parent 663973c8
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@
try:
from mercurial import discovery
kwname = 'heads'
if hg.util.version() > 1.6:
if hg.util.version() >= '1.7':
kwname = 'remoteheads'
def findoutgoing(orig, local, remote, *args, **kwargs):
kw = {}
......
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