# HG changeset patch # User Boris Feld # Date 1497525965 -7200 # Node ID 6eb87513024b8cd6d2860c742adea6675a6d95aa # Parent f6821f6bf73c2cfa2b3fe61ee81ed19effe6ec01 fix: fix _headssummary call to orig 65cf338258d2 one of two orig call wasn't compatible with mercurial version < 4.3, fix it. diff --git a/hgext3rd/topic/discovery.py b/hgext3rd/topic/discovery.py --- a/hgext3rd/topic/discovery.py +++ b/hgext3rd/topic/discovery.py @@ -32,7 +32,7 @@ publishing = ('phases' not in remote.listkeys('namespaces') or bool(remote.listkeys('phases').get('publishing', False))) if publishing or not remote.capable('topics'): - return orig(pushop) + return orig(*args) oldrepo = repo.__class__ oldbranchcache = branchmap.branchcache oldfilename = branchmap._filename