aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse')
-rw-r--r--Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse6
1 files changed, 3 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse b/Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse
index 505dac7..d155184 100644
--- a/Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse
+++ b/Emacs/.config/emacs/.config/yasnippet/snippets/python-mode/tryelse
@@ -4,8 +4,8 @@
# uuid: try
# --
try:
- $1
-except $2:
- $3
+ ${1:pass}
+except ${2:Exception}:
+ ${3:pass}
else:
$0 \ No newline at end of file