diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-03 13:26:05 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-03 13:26:05 -0400 |
| commit | 876d87e003fc787f07fcea0a1cb0895f162284b4 (patch) | |
| tree | a867108e0c9309b08a43c87bb88b68674e89ea1b /setuptools/__init__.py | |
| parent | 738f93691f361d27a07f12002260f9287ca1bad5 (diff) | |
| download | python-setuptools-bitbucket-876d87e003fc787f07fcea0a1cb0895f162284b4.tar.gz | |
Restore traversal of symbolic links in find_packages. Fixes #195.
Diffstat (limited to 'setuptools/__init__.py')
| -rw-r--r-- | setuptools/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 8d46b6dd..d99ab2a6 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -78,7 +78,7 @@ class PackageFinder(object): """ Return all dirs in base_path, relative to base_path """ - for root, dirs, files in os.walk(base_path): + for root, dirs, files in os.walk(base_path, followlinks=True): for dir in dirs: yield os.path.relpath(os.path.join(root, dir), base_path) |
