summaryrefslogtreecommitdiff
path: root/command/install.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-02-23 05:03:26 +0000
committerTarek Ziadé <ziade.tarek@gmail.com>2010-02-23 05:03:26 +0000
commit8943dd0fe879512f88742a42893da24553cca38b (patch)
tree8b9d843a88b55dacad74259119d6f726cc7ed73c /command/install.py
parenta72113165de6217370d77b04b5abba938230953e (diff)
downloadpython-setuptools-git-8943dd0fe879512f88742a42893da24553cca38b.tar.gz
Merged revisions 78354 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78354 | tarek.ziade | 2010-02-22 23:57:05 -0500 (Mon, 22 Feb 2010) | 1 line removed debugging code ........
Diffstat (limited to 'command/install.py')
-rw-r--r--command/install.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/command/install.py b/command/install.py
index cfebeeab..31d03871 100644
--- a/command/install.py
+++ b/command/install.py
@@ -499,10 +499,7 @@ class install(Command):
if val is not None:
if os.name == 'posix' or os.name == 'nt':
val = os.path.expanduser(val)
- try:
- val = _subst_vars(val, self.config_vars)
- except:
- import pdb; pdb.set_trace()
+ val = _subst_vars(val, self.config_vars)
setattr(self, attr, val)
def expand_basedirs(self):