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
raisefrom within atry
statement'selseclause. This doesn't make sense becauseelseis
called when the body of the try completed successfully, so there's
nothing to re-raise.
Ran unit tests.