Submitter | phabricator |
---|---|
Date | Feb. 25, 2018, 1:53 a.m. |
Message ID | <4648cab0a4d738be3df9c0bdeedee142@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28348/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -654,8 +654,9 @@ else: msg = _('public url %s is missing %s') msg %= (publicurl, missing[0]) + missingrevs = [ctx.rev() for ctx in missing] revhint = ' '.join('-r %s' % h - for h in repo.set('heads(%ld)', missing)) + for h in repo.set('heads(%ld)', missingrevs)) hint = _("use 'hg push %s %s'") % (publicurl, revhint) raise error.Abort(msg, hint=hint)