aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-03-24 18:43:13 +0100
committerGuido Günther <agx@sigxcpu.org>2016-03-24 18:43:13 +0100
commit085db1429da054c5c7f7e26a7b3fbbbce1a358f7 (patch)
tree63c4ac097b55c35ea0c85752ffb09d20c7c06382
parent93725a56e52eb5abf89db23428a50a23d27f361f (diff)
parenta75d8d49704b59c34ba5a6f1d12f1ebf37fcc9cf (diff)
Merge pull request #10 from aboyett/expand-cache-path
expand the use of '~' in cache path location
-rwxr-xr-x[-rw-r--r--]foreman_ansible_inventory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/foreman_ansible_inventory.py b/foreman_ansible_inventory.py
index 461146c..e2a53c3 100644..100755
--- a/foreman_ansible_inventory.py
+++ b/foreman_ansible_inventory.py
@@ -107,7 +107,7 @@ class ForemanInventory(object):
# Cache related
try:
- cache_path = config.get('cache', 'path')
+ cache_path = os.path.expanduser(config.get('cache', 'path'))
except (ConfigParser.NoOptionError, ConfigParser.NoSectionError):
cache_path = '.'
(script, ext) = os.path.splitext(os.path.basename(__file__))