# HG changeset patch # User Yuya Nishihara # Date 1427730737 -32400 # Node ID 13f0af2a5a4c2436e00f40e7a2004a1313accb76 # Parent 6abce80e6cbfaafcbe176778a448d818849c557b patchbomb: return outgoing revs as a smartset This helps to factor out scmutil.revrange() calls from _getpatches() and _getoutgoing(). In future patches, a smartset will be passed to _getpatches(). diff -r 6abce80e6cbf -r 13f0af2a5a4c hgext/patchbomb.py --- a/hgext/patchbomb.py Mon Mar 30 23:54:29 2015 +0900 +++ b/hgext/patchbomb.py Tue Mar 31 00:52:17 2015 +0900 @@ -345,8 +345,7 @@ revs = repo.revs('outgoing(%s) and ::%ld', dest or '', revs) if not revs: ui.status(_("no changes found\n")) - return [] - return [str(r) for r in revs] + return revs emailopts = [ ('', 'body', None, _('send patches as inline message text (default)')), @@ -503,7 +502,7 @@ if outgoing: revs = _getoutgoing(repo, dest, rev) if bundle: - opts['revs'] = revs + opts['revs'] = [str(r) for r in revs] # start if date: @@ -527,6 +526,7 @@ bundleopts.pop('bundle', None) # already processed msgs = _getbundlemsgs(repo, sender, bundledata, **bundleopts) else: + revs = [str(r) for r in revs] _patches = list(_getpatches(repo, revs, **opts)) msgs = _getpatchmsgs(repo, sender, _patches, **opts)