sanic
sanic copied to clipboard
Fixed `mixins.startup.serve` UnboundLocalError.
Fixes https://github.com/sanic-org/sanic/issues/2985
the finally
block in mixins.serve
references a variable that is only defined in the try
block. This results in a UnboundLocalError
within the finally
block.