Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py

changeset 5106
1ecc6c9abca5
parent 5067
e2f171f08af8
child 5389
9b1c800daff3
--- a/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py	Tue Aug 23 18:53:46 2016 +0200
+++ b/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/messages.py	Tue Aug 23 19:02:43 2016 +0200
@@ -132,7 +132,7 @@
 
 class ImportStarNotPermitted(Message):
     """
-    Class defining the "Import * not permitted" message.""
+    Class defining the "Import * not permitted" message.
     """
     message_id = 'F16'
     message = "'from %s import *' only allowed at module level"
@@ -449,12 +449,12 @@
 
 class DefaultExceptNotLast(Message):
     """
-    Class defining the "Default except: not being the last" message.
+    Class defining the "Default except not being the last" message.
     
-    Indicates an except: block as not the last exception handler.
+    Indicates an except block as not the last exception handler.
     """
     message_id = 'F25'
-    message = 'default \'except:\' must be last'
+    message = 'default \'except:\' must be last'    # __IGNORE_WARNING__
 
 
 class TwoStarredExpressions(Message):

eric ide

mercurial