diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 11:21:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-20 11:21:44 -0400 |
commit | 599c4f7f9789af39b541272c06b082141aae7fb3 (patch) | |
tree | 4b0fafe6c62f108a04a512b871ad25bfca986e85 /setuptools/py31compat.py | |
parent | 7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3 (diff) | |
parent | 93612718350a0dd0bb09d21986ef9333a6f5cb1f (diff) | |
download | external_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.tar.gz external_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.tar.bz2 external_python_setuptools-599c4f7f9789af39b541272c06b082141aae7fb3.zip |
Merge pull request #644 from stepshal/spacing-comment-hash
Fix spacing after comment hash.
Diffstat (limited to 'setuptools/py31compat.py')
-rw-r--r-- | setuptools/py31compat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/py31compat.py b/setuptools/py31compat.py index 414b377b..1e959e28 100644 --- a/setuptools/py31compat.py +++ b/setuptools/py31compat.py @@ -29,7 +29,7 @@ except ImportError: """ def __init__(self): - self.name = None # Handle mkdtemp raising an exception + self.name = None # Handle mkdtemp raising an exception self.name = tempfile.mkdtemp() def __enter__(self): @@ -38,7 +38,7 @@ except ImportError: def __exit__(self, exctype, excvalue, exctrace): try: shutil.rmtree(self.name, True) - except OSError: #removal errors are not the only possible + except OSError: # removal errors are not the only possible pass self.name = None |