diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 13:05:57 +0800 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 13:05:57 +0800 |
commit | b99210422d452d6c135d31bd532f11accb74130d (patch) | |
tree | 58759c137800161f814cd699c5c9a1fba6a0c46a /astroid/manager.py | |
parent | 68a9c60c89f74badd54aed1bb3038ebc7dfb4734 (diff) | |
download | astroid-git-b99210422d452d6c135d31bd532f11accb74130d.tar.gz |
Fix lint errors
Diffstat (limited to 'astroid/manager.py')
-rw-r--r-- | astroid/manager.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/astroid/manager.py b/astroid/manager.py index d0662143..177509a8 100644 --- a/astroid/manager.py +++ b/astroid/manager.py @@ -121,7 +121,7 @@ class AstroidManager(object): return self._build_stub_module(modname) try: module = modutils.load_module_from_name(modname) - except Exception as ex: # pylint: disable=broad-except + except Exception as ex: raise exceptions.AstroidImportError( 'Loading {modname} failed with:\n{error}', modname=modname, path=found_spec.location) from ex @@ -177,17 +177,14 @@ class AstroidManager(object): def file_from_module_name(self, modname, contextfile): try: value = self._mod_file_cache[(modname, contextfile)] - traceback = sys.exc_info()[2] except KeyError: try: value = modutils.file_info_from_modpath( modname.split('.'), context_file=contextfile) - traceback = sys.exc_info()[2] except ImportError as ex: value = exceptions.AstroidImportError( 'Failed to import module {modname} with error:\n{error}.', modname=modname, error=ex) - traceback = sys.exc_info()[2] self._mod_file_cache[(modname, contextfile)] = value if isinstance(value, exceptions.AstroidBuildingError): raise value @@ -232,7 +229,7 @@ class AstroidManager(object): raise exceptions.AstroidBuildingError( 'Unable to get module for {class_repr}.', cls=klass, class_repr=safe_repr(klass)) from exc - except Exception as exc: # pylint: disable=broad-except + except Exception as exc: raise exceptions.AstroidImportError( 'Unexpected error while retrieving module for {class_repr}:\n' '{error}', cls=klass, class_repr=safe_repr(klass)) from exc @@ -242,7 +239,7 @@ class AstroidManager(object): raise exceptions.AstroidBuildingError( 'Unable to get name for {class_repr}:\n', cls=klass, class_repr=safe_repr(klass)) from exc - except Exception as exc: # pylint: disable=broad-except + except Exception as exc: raise exceptions.AstroidImportError( 'Unexpected error while retrieving name for {class_repr}:\n' '{error}', cls=klass, class_repr=safe_repr(klass)) from exc |