diff options
author | stepshal <nessento@openmailbox.org> | 2016-07-21 10:17:11 +0700 |
---|---|---|
committer | stepshal <nessento@openmailbox.org> | 2016-07-22 00:26:14 +0700 |
commit | 7f118aaae6a49171a91248cc413dc78eb497a054 (patch) | |
tree | 7cecddd2264a2dadc52f0b4125ddb12ac0bac714 /setuptools/sandbox.py | |
parent | fd3ff004cd3570460a079de785846f54ae1ee36f (diff) | |
download | external_python_setuptools-7f118aaae6a49171a91248cc413dc78eb497a054.tar.gz external_python_setuptools-7f118aaae6a49171a91248cc413dc78eb497a054.tar.bz2 external_python_setuptools-7f118aaae6a49171a91248cc413dc78eb497a054.zip |
Fix continuation line unaligned for hanging indent.
Diffstat (limited to 'setuptools/sandbox.py')
-rwxr-xr-x | setuptools/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index df630d3e..2babb636 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -258,7 +258,7 @@ class AbstractSandbox: def __init__(self): self._attrs = [ name for name in dir(_os) - if not name.startswith('_') and hasattr(self, name) + if not name.startswith('_') and hasattr(self, name) ] def _copy(self, source): |