diff mercurial/mdiff.py @ 45888:c8860a212770

errors: raise InputError when line range to followlines() is out of bounds Differential Revision: https://phab.mercurial-scm.org/D9333
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 16 Nov 2020 16:25:04 -0800
parents 10f48720ef95
children 89a2afe31e82
line wrap: on
line diff
--- a/mercurial/mdiff.py	Sat Nov 07 22:31:29 2020 +0100
+++ b/mercurial/mdiff.py	Mon Nov 16 16:25:04 2020 -0800
@@ -199,7 +199,7 @@
         if hunkinrange((b1, (b2 - b1)), rangeb):
             filteredblocks.append(block)
     if lba is None or uba is None or uba < lba:
-        raise error.Abort(_(b'line range exceeds file size'))
+        raise error.InputError(_(b'line range exceeds file size'))
     return filteredblocks, (lba, uba)