Commit b7388d74 authored by Jim Fulton's avatar Jim Fulton

Fixed stupid bug in matching python executable.

parent 4f1c055c
...@@ -69,7 +69,7 @@ def test_suite(): ...@@ -69,7 +69,7 @@ def test_suite():
'_d = sample-buildout/develop-eggs'), '_d = sample-buildout/develop-eggs'),
(re.compile('_e = \S+sample-buildout.eggs'), (re.compile('_e = \S+sample-buildout.eggs'),
'_e = sample-buildout/eggs'), '_e = sample-buildout/eggs'),
(re.compile('executable = \S+python\S+'), (re.compile('executable = \S+python\S*'),
'executable = python'), 'executable = python'),
(re.compile('index = \S+python\S+'), (re.compile('index = \S+python\S+'),
'executable = python'), 'executable = python'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment