diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-25 09:42:55 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-25 09:42:55 +0200 |
commit | 6cfe211df3515188ef893afeabbdc25298839302 (patch) | |
tree | bb3b1ca7369dcde404a1f60fef9400594e8f581b /modutils.py | |
parent | 109dc2640c1e01a83f8076b52321bcdec033af08 (diff) | |
download | astroid-git-6cfe211df3515188ef893afeabbdc25298839302.tar.gz |
Fix.
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 1ed0bafe..e016bce1 100644 --- a/modutils.py +++ b/modutils.py @@ -432,7 +432,7 @@ def is_standard_module(modname, std_path=(STD_LIB_DIR,)): return True for path in std_path: if filename.startswith(abspath(path)): - return return True + return True return False |