##// END OF EJS Templates
changegroup: more **kwargs...
Augie Fackler -
r33678:672ad4f3 default
parent child Browse files
Show More
@@ -390,13 +390,13 b' class cg1unpacker(object):'
390 if clstart >= len(repo):
390 if clstart >= len(repo):
391 return
391 return
392
392
393 repo.hook("changegroup", **hookargs)
393 repo.hook("changegroup", **pycompat.strkwargs(hookargs))
394
394
395 for n in added:
395 for n in added:
396 args = hookargs.copy()
396 args = hookargs.copy()
397 args['node'] = hex(n)
397 args['node'] = hex(n)
398 del args['node_last']
398 del args['node_last']
399 repo.hook("incoming", **args)
399 repo.hook("incoming", **pycompat.strkwargs(args))
400
400
401 newheads = [h for h in repo.heads()
401 newheads = [h for h in repo.heads()
402 if h not in oldheads]
402 if h not in oldheads]
General Comments 0
You need to be logged in to leave comments. Login now