aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/py31compat.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-14 12:32:22 +0700
committerstepshal <nessento@openmailbox.org>2016-07-14 12:32:22 +0700
commit93612718350a0dd0bb09d21986ef9333a6f5cb1f (patch)
tree70be0e1551562cdf88bc769d95be0793523b10e7 /setuptools/py31compat.py
parent8e80ee745b620086bea2111236f85fa2376d748f (diff)
downloadexternal_python_setuptools-93612718350a0dd0bb09d21986ef9333a6f5cb1f.tar.gz
external_python_setuptools-93612718350a0dd0bb09d21986ef9333a6f5cb1f.tar.bz2
external_python_setuptools-93612718350a0dd0bb09d21986ef9333a6f5cb1f.zip
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 04a314ef..c2c4eed8 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