diff options
| author | ?ric Araujo <merwok@netwok.org> | 2011-11-12 06:27:14 +0100 |
|---|---|---|
| committer | ?ric Araujo <merwok@netwok.org> | 2011-11-12 06:27:14 +0100 |
| commit | 33ce5b2ed15312a38578abece6f3e46cab03d06c (patch) | |
| tree | 9bc8d784a8209865d46c8c73f9710ed7dde4b0e3 | |
| parent | e65890db19e3b798752544632abd303625c4a7f7 (diff) | |
| download | disutils2-33ce5b2ed15312a38578abece6f3e46cab03d06c.tar.gz | |
Fix module name
| -rw-r--r-- | distutils2/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/util.py b/distutils2/util.py index fca3f98..dcb8e9d 100644 --- a/distutils2/util.py +++ b/distutils2/util.py @@ -638,7 +638,7 @@ def resolve_name(name): This functions supports packages and attributes without depth limitation: ``package.package.module.class.class.function.attr`` is valid input. However, looking up builtins is not directly supported: use - ``builtins.name``. + ``__builtin__.name``. Raises ImportError if importing the module fails or if one requested attribute is not found. |
