diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-21 19:51:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-21 19:51:10 -0400 |
| commit | 0cd550a81c1e18d6bed0830a16dd9f1a37058aaf (patch) | |
| tree | b4d6bfed57580938d8fb1a14c3574d4db284a890 /setuptools/sandbox.py | |
| parent | e8d8a79224dd0e3b2af8a1f5708b06cc62e2b61a (diff) | |
| parent | 7f118aaae6a49171a91248cc413dc78eb497a054 (diff) | |
| download | python-setuptools-git-0cd550a81c1e18d6bed0830a16dd9f1a37058aaf.tar.gz | |
Merge pull request #663 from stepshal/unaligned
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): |
