Skip to content
Snippets Groups Projects
Commit 663973c8 authored by jsumners's avatar jsumners
Browse files

I found that `inspect.getargspec(discovery.findoutgoing)[0]` was returning...

I found that `inspect.getargspec(discovery.findoutgoing)[0]` was returning `[]` instead of the expected function definition.
Since the change occurred between Mercurial 1.6 and 1.7, a simple version check works instead.
This fixes https://github.com/schacon/hg-git/issues/issue/168
parent 24057391
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 'remoteheads' in inspect.getargspec(discovery.findoutgoing)[0]:
if hg.util.version() > 1.6:
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