Merge pull request #12227 from tmartinfr/psql-clean-env

Clean environment before calling psql
This commit is contained in:
Thomas S Hatch 2014-04-23 14:11:33 -06:00
commit 11a955e66f

View File

@ -72,7 +72,8 @@ def _run_psql(cmd, runas=None, password=None, host=None, port=None, user=None,
makes this too much code to be repeated in each function below
'''
kwargs = {
'reset_system_locale': False
'reset_system_locale': False,
'clean_env': True,
}
if runas is None:
if not host: