diff --git a/bugbear.py b/bugbear.py index 010e095..5e7ea93 100644 --- a/bugbear.py +++ b/bugbear.py @@ -258,7 +258,7 @@ def visit_ExceptHandler(self, node): # (MyError, BaseException) # everything derives from the Base # (Exception, TypeError) # builtins where one subclasses another # (IOError, OSError) # IOError is an alias of OSError since Python3.3 - # but note that other cases are impractical to hande from the AST. + # but note that other cases are impractical to handle from the AST. # We expect this is mostly useful for users who do not have the # builtin exception hierarchy memorised, and include a 'shadowed' # subtype without realising that it's redundant.