mercurial/scmutil.py
changeset 41370 a728ef2f9b15
parent 41369 5079242abef9
child 41419 b5169e79c31c
--- 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'))