aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-25 10:40:35 -0400
committerGitHub <noreply@github.com>2016-07-25 10:40:35 -0400
commit54d74fea912dc7820f05d39db2bce1068f2ac16d (patch)
treeaf86b36711857e9e5a285081260262529ab54477
parentb15b40d3fdd88e6206de5d29c09fcc7e84779f8a (diff)
parent1918a41831fbef6d4b67dc484c647d56658bae1d (diff)
downloadexternal_python_setuptools-54d74fea912dc7820f05d39db2bce1068f2ac16d.tar.gz
external_python_setuptools-54d74fea912dc7820f05d39db2bce1068f2ac16d.tar.bz2
external_python_setuptools-54d74fea912dc7820f05d39db2bce1068f2ac16d.zip
Merge pull request #689 from eliasdorneles/fix-path-chdirv25.0.2
Fix: use os.chdir to change directory (fixes #688)
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c0c166ea..b03fd40a 100755
--- a/setup.py
+++ b/setup.py
@@ -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)