# -*- mode: snippet -*-
# name: tryelse
# key: tryelse
# expand-env: ((yas-indent-line 'fixed))
# --
try:
    $0
except $1:
    $2
else:
    $3
