diff -r 57875cf423c9 -r 2372284d9457 hgext/clonebundles.py --- a/hgext/clonebundles.py Sat Oct 05 10:29:34 2019 -0400 +++ b/hgext/clonebundles.py Sun Oct 06 09:45:02 2019 -0400 @@ -203,6 +203,7 @@ testedwith = 'ships-with-hg-core' + def capabilities(orig, repo, proto): caps = orig(repo, proto) @@ -214,5 +215,6 @@ return caps + def extsetup(ui): extensions.wrapfunction(wireprotov1server, '_capabilities', capabilities)