Fix a broken try/except/else clause.

Review Request #12010 — Created Jan. 26, 2022 and submitted — Latest diff uploaded

Information

Review Board
master

Reviewers

We had a place where we were calling raise from within a try
statement's else clause. This doesn't make sense because else is
called when the body of the try completed successfully, so there's
nothing to re-raise.

Ran unit tests.

Commits

Files

    Loading...