Comments
Patch
@@ -360,7 +360,7 @@
common=None,
bundlecaps=None,
remote_sidedata=None,
- **kwargs
+ **kwargs,
):
chunks = exchange.getbundlechunks(
self._repo,
@@ -369,7 +369,7 @@
common=common,
bundlecaps=bundlecaps,
remote_sidedata=remote_sidedata,
- **kwargs
+ **kwargs,
)[1]
cb = util.chunkbuffer(chunks)
@@ -2447,7 +2447,7 @@
repo.hook(
b'pretxnclose-bookmark',
throw=True,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
if hook.hashook(repo.ui, b'pretxnclose-phase'):
cl = repo.unfiltered().changelog
@@ -2459,7 +2459,7 @@
repo.hook(
b'pretxnclose-phase',
throw=True,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
repo.hook(
@@ -2536,7 +2536,7 @@
repo.hook(
b'txnclose-bookmark',
throw=False,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
if hook.hashook(repo.ui, b'txnclose-phase'):
@@ -2552,7 +2552,7 @@
repo.hook(
b'txnclose-phase',
throw=False,
- **pycompat.strkwargs(args)
+ **pycompat.strkwargs(args),
)
repo.hook(