--- 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):