diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-25 10:40:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-25 10:40:35 -0400 |
| commit | 54d74fea912dc7820f05d39db2bce1068f2ac16d (patch) | |
| tree | af86b36711857e9e5a285081260262529ab54477 /setup.py | |
| parent | b15b40d3fdd88e6206de5d29c09fcc7e84779f8a (diff) | |
| parent | 1918a41831fbef6d4b67dc484c647d56658bae1d (diff) | |
| download | python-setuptools-git-54d74fea912dc7820f05d39db2bce1068f2ac16d.tar.gz | |
Merge pull request #689 from eliasdorneles/fix-path-chdirv25.0.2
Fix: use os.chdir to change directory (fixes #688)
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -191,6 +191,6 @@ setup_params = dict( if __name__ == '__main__': # allow setup.py to run from another directory - here and os.path.chdir(here) + here and os.chdir(here) require_metadata() dist = setuptools.setup(**setup_params) |
