# HG changeset patch # User Pierre-Yves David # Date 1537982224 -7200 # Node ID 4abec3a1208f98044f5fea3a05f3d273f2ead6af # Parent 5ef93dbace5e9646dcf4448f5cf55d120a047a06 pullbundle: fix style warning diff -r 5ef93dbace5e -r 4abec3a1208f hgext3rd/pullbundle.py --- a/hgext3rd/pullbundle.py Wed Sep 26 18:41:55 2018 +0200 +++ b/hgext3rd/pullbundle.py Wed Sep 26 19:17:04 2018 +0200 @@ -193,7 +193,7 @@ for head in missingheads: localslices = [] localmissing = set(repo.revs('%ld and ::%d', missingrevs, head)) - thisrunmissing = localmissing.copy() + thisrunmissing = localmissing.copy() while localmissing: slicerevs = [] for r in revsort.walkfrom(repo, head):