aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/py31compat.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-20 11:21:44 -0400
committerGitHub <noreply@github.com>2016-07-20 11:21:44 -0400
commit599c4f7f9789af39b541272c06b082141aae7fb3 (patch)
tree4b0fafe6c62f108a04a512b871ad25bfca986e85 /setuptools/py31compat.py
parent7303c3281c2a8ac3b4d9878a92ab55bbfb92faf3 (diff)
parent93612718350a0dd0bb09d21986ef9333a6f5cb1f (diff)
downloadexternal_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.py4
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