diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-25 10:30:32 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-25 10:30:32 +0200 |
commit | fc6e8a520c80909c206d817c48d76af332648523 (patch) | |
tree | 1c8e1767dd5231ccdaf8e87faf805c525f529898 /modutils.py | |
parent | e228063fdc08bfae83a68c1bf1e2f423cf492fed (diff) | |
download | astroid-git-fc6e8a520c80909c206d817c48d76af332648523.tar.gz |
Oups, fix a mistake.
Diffstat (limited to 'modutils.py')
-rw-r--r-- | modutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils.py b/modutils.py index e016bce1..8fc8575f 100644 --- a/modutils.py +++ b/modutils.py @@ -429,7 +429,7 @@ def is_standard_module(modname, std_path=(STD_LIB_DIR,)): return True filename = abspath(filename) if filename.startswith(EXT_LIB_DIR): - return True + return False for path in std_path: if filename.startswith(abspath(path)): return True |