Commit 57ebdeda authored by Jim Fulton's avatar Jim Fulton

Tweak for py3

parent d3c78d5c
......@@ -2323,10 +2323,10 @@ def wont_downgrade_due_to_prefer_final():
... parts =
... zc.buildout-version = >.1
... ''')
>>> [l.split('=', 1)[1].strip()
>>> [str(l.split('=', 1)[1].strip())
... for l in system(buildout+' -vv').split('\n')
... if l.startswith('zc.buildout-version =')]
[u'>.1']
['>.1']
>>> write('buildout.cfg',
... '''
......
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