##// END OF EJS Templates
context: raise ProgrammingError on repo['my-tag']...
Martin von Zweigbergk -
r38845:91618801 default
parent child Browse files
Show More
@@ -432,6 +432,10 b' class changectx(basectx):'
432 432 raise
433 433 except (TypeError, LookupError):
434 434 pass
435 else:
436 raise error.ProgrammingError(
437 "unsupported changeid '%s' of type %s" %
438 (changeid, type(changeid)))
435 439
436 440 # lookup failed
437 441 except (error.FilteredIndexError, error.FilteredLookupError):
General Comments 0
You need to be logged in to leave comments. Login now