changeset 39907:8cef57031bbe

context: stop catching TypeError when converting hex nodeid to binary It has been a programming error to pass a 40-character string that is not a hex nodeid since 8b86acc7aa64 (context: drop support for looking up context by ambiguous changeid (API), 2018-04-28), so we can just let it raise a TypeError. Differential Revision: https://phab.mercurial-scm.org/D4807
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 27 Sep 2018 14:26:02 -0700
parents 2327abace563
children d70e620ee8c9
files mercurial/context.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/context.py	Thu Sep 27 09:56:13 2018 -0700
+++ b/mercurial/context.py	Thu Sep 27 14:26:02 2018 -0700
@@ -435,7 +435,7 @@
                     return
                 except error.FilteredLookupError:
                     raise
-                except (TypeError, LookupError):
+                except LookupError:
                     pass
             else:
                 raise error.ProgrammingError(