Fix a broken try/except/else clause.
Review Request #12010 — Created Jan. 26, 2022 and submitted — Latest diff uploaded
We had a place where we were calling
raise
from within atry
statement'selse
clause. This doesn't make sense becauseelse
is
called when the body of the try completed successfully, so there's
nothing to re-raise.
Ran unit tests.