diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-02-23 04:57:05 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-02-23 04:57:05 (GMT) |
commit | b0aad6cd0921ad2426cf54d30d497044ce7800ae (patch) | |
tree | 7c971e2ef4d7ff6e6079c431093ddceb77e44d57 /Lib | |
parent | f28fd24c36310541a1f3ec74e92e8d38629dd5d8 (diff) | |
download | cpython-b0aad6cd0921ad2426cf54d30d497044ce7800ae.zip cpython-b0aad6cd0921ad2426cf54d30d497044ce7800ae.tar.gz cpython-b0aad6cd0921ad2426cf54d30d497044ce7800ae.tar.bz2 |
removed debugging code
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/install.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 60e4df0..fb17b4f 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): |