diff options
author | stepshal <nessento@openmailbox.org> | 2016-10-19 00:10:40 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-10-19 00:10:40 +0700 |
commit | df1bd4e17a082b9b634f62d799807a18e526a7c0 (patch) | |
tree | 29d01f4da34fa7a863e779d665ed9636bc4b2cae /setuptools/site-patch.py | |
parent | 7d984bbdc111fcdfef816265e159a3054dbee132 (diff) | |
download | external_python_setuptools-df1bd4e17a082b9b634f62d799807a18e526a7c0.tar.gz external_python_setuptools-df1bd4e17a082b9b634f62d799807a18e526a7c0.tar.bz2 external_python_setuptools-df1bd4e17a082b9b634f62d799807a18e526a7c0.zip |
Fix spacing after comment hash.
Diffstat (limited to 'setuptools/site-patch.py')
-rw-r--r-- | setuptools/site-patch.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/site-patch.py b/setuptools/site-patch.py index f09ab522..92194abd 100644 --- a/setuptools/site-patch.py +++ b/setuptools/site-patch.py @@ -40,13 +40,13 @@ def __boot(): known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp - oldpos = getattr(sys, '__egginsert', 0) # save old insertion position - sys.__egginsert = 0 # and reset the current one + oldpos = getattr(sys, '__egginsert', 0) # save old insertion position + sys.__egginsert = 0 # and reset the current one for item in PYTHONPATH: addsitedir(item) - sys.__egginsert += oldpos # restore effective old position + sys.__egginsert += oldpos # restore effective old position d, nd = makepath(stdpath[0]) insert_at = None |