Merge pull request #44931 from pkruk/fix-missing-parenthis

add missing parenthis to keep integration with python3
This commit is contained in:
Nicole Thomas 2017-12-12 08:49:38 -05:00 committed by GitHub
commit 53b34e24cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -316,7 +316,7 @@ def get_site_packages(venv):
ret = __salt__['cmd.exec_code_all'](
bin_path,
'from distutils import sysconfig; '
'print sysconfig.get_python_lib()'
'print(sysconfig.get_python_lib())'
)
if ret['retcode'] != 0: