summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2012-02-06 11:28:46 -0600
committerDean Troyer <dtroyer@gmail.com>2012-02-14 11:51:11 -0600
commit7601bef9ef70ce69f544e0ffda904a04552bc38c (patch)
tree2390f2d0e2f255f1c311d74a32aa9e062bb04533 /tools
parent5f89c8487d9b0cfe27cafd30d6d2a134290dafd9 (diff)
downloadpython-novaclient-7601bef9ef70ce69f544e0ffda904a04552bc38c.tar.gz
Fixes bug 925644: move dotfiles into dir
Moves ~/.novaclient_cached_*_uuids into ~/.novaclient/*-uuid-cache Change-Id: I7dcd3678118f6c59ce81f83862c20da94d90bb74
Diffstat (limited to 'tools')
-rw-r--r--tools/nova.bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nova.bash_completion b/tools/nova.bash_completion
index 6bbbc268..0ad5ddb1 100644
--- a/tools/nova.bash_completion
+++ b/tools/nova.bash_completion
@@ -7,7 +7,7 @@ _nova()
opts="$(nova bash_completion)"
- UUID_CACHE=~/.novaclient_cached_*_uuids
+ UUID_CACHE=~/.novaclient/*-uuid-cache
opts+=" "$(cat $UUID_CACHE 2> /dev/null | tr '\n' ' ')
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )