From: Tarek Ziadé Date: Tue, 23 Feb 2010 04:57:05 +0000 (+0000) Subject: removed debugging code X-Git-Tag: v2.7a4~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b0aad6cd0921ad2426cf54d30d497044ce7800ae;p=thirdparty%2FPython%2Fcpython.git removed debugging code --- diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 60e4df0fea65..fb17b4f6ea9e 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/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):