[2017.7.8] Use correct path for is_true function

`data.py` does not exist in the salt/utils/ dir in the 2017.7 branch. We need to
use the old path.

This occurred from a backport and I missed the path change.
This commit is contained in:
rallytime 2018-09-07 10:44:30 -04:00
parent 92369f06f6
commit f3e153443a
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -836,7 +836,7 @@ def install(name=None,
opts += 'x'
if salt.utils.is_true(pcre):
opts += 'X'
if salt.utils.data.is_true(batch):
if salt.utils.is_true(batch):
env = {
"BATCH": "true",
"ASSUME_ALWAYS_YES": "YES"