Revert "expand vars like $HOME used in config values too" -- breaks remote_tmp if set.

This reverts commit e5ff35bbdb.
pull/4420/head
Michael DeHaan 2013-07-11 17:27:17 -04:00
parent 4971736660
commit fba1f7ef42
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def shell_expand_path(path):
''' shell_expand_path is needed as os.path.expanduser does not work
when path is None, which is the default for ANSIBLE_PRIVATE_KEY_FILE '''
if path:
path = os.path.expandvars(os.path.expanduser(path))
path = os.path.expanduser(path)
return path
p = load_config_file()