diff options
author | Florian Bruhin <me@the-compiler.org> | 2015-07-25 16:05:45 +0200 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2015-07-25 16:05:45 +0200 |
commit | f22243401b2f72ae3fbd8083f9428e3f2af14168 (patch) | |
tree | 688c21e1fa2064304d9fa32675cf693c5b58ba9d /astroid/modutils.py | |
parent | adf6bebd18e93599fb1188440876f97eb3ac6786 (diff) | |
download | astroid-git-f22243401b2f72ae3fbd8083f9428e3f2af14168.tar.gz |
Fix get_module_files documentation in modutils.
--HG--
branch : no-logilab-common
Diffstat (limited to 'astroid/modutils.py')
-rw-r--r-- | astroid/modutils.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/astroid/modutils.py b/astroid/modutils.py index 8c57d9d5..168a2798 100644 --- a/astroid/modutils.py +++ b/astroid/modutils.py @@ -412,9 +412,8 @@ def get_module_files(src_directory, blacklist): path of the directory corresponding to the package :type blacklist: list or tuple - :param blacklist: - optional list of files or directory to ignore, default to the value of - `logilab.common.STD_BLACKLIST` + :param blacklist: iterable + list of files or directories to ignore. :rtype: list :return: |