]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
removed debugging code
authorTarek Ziadé <ziade.tarek@gmail.com>
Tue, 23 Feb 2010 04:57:05 +0000 (04:57 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Tue, 23 Feb 2010 04:57:05 +0000 (04:57 +0000)
Lib/distutils/command/install.py

index 60e4df0fea650963f774e6171b8d2e9efcb4cbaf..fb17b4f6ea9e61e33bae6ec85f8ad4861c53de16 100644 (file)
@@ -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):