summaryrefslogtreecommitdiff
path: root/setuptools/sandbox.py
diff options
context:
space:
mode:
authorDaniel Holth <dholth@fastmail.fm>2012-09-17 08:46:35 -0400
committerDaniel Holth <dholth@fastmail.fm>2012-09-17 08:46:35 -0400
commit20c14661288e0418b44e7fb1a2ea3873fc4f6c21 (patch)
tree888f9a276a85bbb11017c6a331a0507dac2687ce /setuptools/sandbox.py
parentfb321a77f92988e24bac25f3493397c82146db6a (diff)
parentcada83b25777a9b089b85bc4417baa7016a9c652 (diff)
downloadpython-setuptools-git-20c14661288e0418b44e7fb1a2ea3873fc4f6c21.tar.gz
merge
--HG-- branch : distribute extra : rebase_source : e10714ab6506fa313a8bfb3f88f0620d3ab1707d
Diffstat (limited to 'setuptools/sandbox.py')
-rwxr-xr-xsetuptools/sandbox.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py
index ab2543d9..64f725e7 100755
--- a/setuptools/sandbox.py
+++ b/setuptools/sandbox.py
@@ -166,12 +166,12 @@ else:
_EXCEPTIONS = []
try:
- from win32com.client.gencache import GetGeneratePath
- _EXCEPTIONS.append(GetGeneratePath())
- del GetGeneratePath
+ from win32com.client.gencache import GetGeneratePath
+ _EXCEPTIONS.append(GetGeneratePath())
+ del GetGeneratePath
except ImportError:
- # it appears pywin32 is not installed, so no need to exclude.
- pass
+ # it appears pywin32 is not installed, so no need to exclude.
+ pass
class DirectorySandbox(AbstractSandbox):
"""Restrict operations to a single subdirectory - pseudo-chroot"""