(py-no-outdent-re): fixed the regexp for try: clauses
diff --git a/Misc/python-mode.el b/Misc/python-mode.el
index 619f3f8..ffe9850 100644
--- a/Misc/python-mode.el
+++ b/Misc/python-mode.el
@@ -319,7 +319,7 @@
 
 (defconst py-no-outdent-re
   (concat "\\(" (mapconcat 'identity
-			   '("try\\s +.*:"
+			   '("try:"
 			     "except\\(\\s +.*\\)?:"
 			     "while\\s +.*:"
 			     "for\\s +.*:"