summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Moore joelbm24@gmail.com <>2010-07-27 15:35:20 -0700
committerJoel Moore joelbm24@gmail.com <>2010-07-27 15:35:20 -0700
commit8dad7d1d45599880571689d62857cb437dea182e (patch)
treed0a3bb93cbe8e3a99e5734a8c3d25b2c4aa2c2b4
parent8d0ab705f9432106ec6725be5270081ee9f5a3df (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 8c6c05566..9d81d3bba 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):