[Checkins] SVN: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/tests.py Fixed stupid bug in matching python executable.

Jim Fulton jim at zope.com
Fri Jun 30 11:06:02 EDT 2006


Log message for revision 68926:
  Fixed stupid bug in matching python executable.
  

Changed:
  U   zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/tests.py

-=-
Modified: zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/tests.py
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/tests.py	2006-06-30 11:49:37 UTC (rev 68925)
+++ zc.buildout/trunk/zc.recipe.egg_/src/zc/recipe/egg/tests.py	2006-06-30 15:06:00 UTC (rev 68926)
@@ -69,7 +69,7 @@
                 '_d = sample-buildout/develop-eggs'),
                (re.compile('_e = \S+sample-buildout.eggs'),
                 '_e = sample-buildout/eggs'),
-               (re.compile('executable = \S+python\S+'),
+               (re.compile('executable = \S+python\S*'),
                 'executable = python'),
                (re.compile('index = \S+python\S+'),
                 'executable = python'),



More information about the Checkins mailing list