diff -r 5079242abef9 -r a728ef2f9b15 mercurial/scmutil.py --- a/mercurial/scmutil.py Thu Jan 24 12:38:19 2019 -0800 +++ b/mercurial/scmutil.py Thu Jan 24 12:47:54 2019 -0800 @@ -672,11 +672,12 @@ l = revrange(repo, revs) + if not l: + raise error.Abort(_('empty revision range')) + first = l.first() second = l.last() - if first is None: - raise error.Abort(_('empty revision range')) if (first == second and len(revs) >= 2 and not all(revrange(repo, [r]) for r in revs)): raise error.Abort(_('empty revision on one side of range'))