summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Moore joelbm24@gmail.com <>2010-08-14 22:28:05 +0000
committerTarmac <>2010-08-14 22:28:05 +0000
commit25f97fbe3acd4765965e402ae4ed72a041610447 (patch)
tree2e547797342a211bcade5633b6c0131ebad5d60b
parent0a7121efbef13ce832b2930baf61c07b66dc5e9a (diff)
parent8dad7d1d45599880571689d62857cb437dea182e (diff)
Fixed path to keys directory.
-rw-r--r--nova/endpoint/cloud.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/endpoint/cloud.py b/nova/endpoint/cloud.py
index c79e96f5d..dcabad710 100644
--- a/nova/endpoint/cloud.py
+++ b/nova/endpoint/cloud.py
@@ -86,7 +86,7 @@ class CloudController(object):
""" Ensure the keychains and folders exist. """
# Create keys folder, if it doesn't exist
if not os.path.exists(FLAGS.keys_path):
- os.makedirs(os.path.abspath(FLAGS.keys_path))
+ os.makedirs(FLAGS.keys_path)
# Gen root CA, if we don't have one
root_ca_path = os.path.join(FLAGS.ca_path, FLAGS.ca_file)
if not os.path.exists(root_ca_path):