add missing parenthis to keep integration with python3

This commit is contained in:
Piotr Kruk 2017-12-11 21:37:00 +01:00
parent 85160fd297
commit adf38cacfb
No known key found for this signature in database
GPG key ID: C038BAFD77BAF042

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: