Merge pull request #93 from robertodr/master
Fixes problem with format syntax spotted by @miroi
This commit is contained in:
commit
85dc78a9d5
@ -205,8 +205,8 @@ def test_python_interpreter():
|
|||||||
|
|
||||||
|
|
||||||
def test_python_interpreter_custom():
|
def test_python_interpreter_custom():
|
||||||
python_executable = sys.executable
|
setup = 'python setup.py --cxx=g++ --python=%s' % sys.executable
|
||||||
configure_build_and_exe('python_interpreter_custom', 'python setup.py --cxx=g++ --python={}'.format(python_executable))
|
configure_build_and_exe('python_interpreter_custom', setup)
|
||||||
|
|
||||||
|
|
||||||
def test_python_libs():
|
def test_python_libs():
|
||||||
@ -214,5 +214,5 @@ def test_python_libs():
|
|||||||
|
|
||||||
|
|
||||||
def test_python_libs_custom():
|
def test_python_libs_custom():
|
||||||
python_executable = sys.executable
|
setup = 'python setup.py --cxx=g++ --python=%s' % sys.executable
|
||||||
configure_build_and_exe('python_libs_custom', 'python setup.py --cxx=g++ --python={}'.format(python_executable))
|
configure_build_and_exe('python_libs_custom', setup)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user