aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-05-05 07:10:25 +0000
committerStefan Monnier <[email protected]>2008-05-05 07:10:25 +0000
commit0c8a412cfd9ec585b1ca00c85492b10f633fc886 (patch)
tree93937d3d0656beae434bc17ce5fa8fd370f20713 /lisp/progmodes/python.el
parent11a36f646ec2f2e9a479e1d1830de01feda92c2e (diff)
(python-block-pairs): Align finally with except.
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 36bc117828..259b095bc7 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -747,7 +747,7 @@ Set `python-indent' locally to the value guessed."
'(("else" "if" "elif" "while" "for" "try" "except")
("elif" "if" "elif")
("except" "try" "except")
- ("finally" "try"))
+ ("finally" "try" "except"))
"Alist of keyword matches.
The car of an element is a keyword introducing a statement which
can close a block opened by a keyword in the cdr.")