[Checkins] SVN: zc.buildout/branches/gary-support-system-python/src/zc/buildout/easy_install.py oops. remove the pdb.

Gary Poster gary.poster at canonical.com
Mon Jul 6 20:42:45 EDT 2009


Log message for revision 101674:
  oops.  remove the pdb.

Changed:
  U   zc.buildout/branches/gary-support-system-python/src/zc/buildout/easy_install.py

-=-
Modified: zc.buildout/branches/gary-support-system-python/src/zc/buildout/easy_install.py
===================================================================
--- zc.buildout/branches/gary-support-system-python/src/zc/buildout/easy_install.py	2009-07-07 00:14:39 UTC (rev 101673)
+++ zc.buildout/branches/gary-support-system-python/src/zc/buildout/easy_install.py	2009-07-07 00:42:45 UTC (rev 101674)
@@ -94,11 +94,8 @@
         _proc.wait();
         raw = _proc.stdout.read()
         _proc.stdout.close()
+        res = eval(raw)
         try:
-            res = eval(raw)
-        except SyntaxError:
-            import pdb; pdb.set_trace()
-        try:
             res.remove('.')
         except ValueError:
             pass



More information about the Checkins mailing list