diff options
author | 2017-05-10 11:00:57 +0000 | |
---|---|---|
committer | 2017-05-10 11:00:57 +0000 | |
commit | 334c07d75e6a4482b0e28eb8c549b074c50870d4 (patch) | |
tree | 517c137f9c74ea28cf5bf5681f5f443341254829 /utils | |
parent | 0eea6b8b93aa4297424f9530ed0f4b25c977bee1 (diff) | |
parent | 5b5e2e6b0b26f5d938008ab640c032e6facb18b9 (diff) |
Merge "Bugfix: Error when create pod.yaml file"
Diffstat (limited to 'utils')
-rw-r--r-- | utils/create_pod_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/create_pod_file.py b/utils/create_pod_file.py index 7e30cc639..197e4933c 100644 --- a/utils/create_pod_file.py +++ b/utils/create_pod_file.py @@ -58,7 +58,7 @@ def create_file(handler): Other installers use key file of each node. """ if not os.path.exists(os.path.dirname(args.filepath)): - os.path.makedirs(os.path.dirname(args.filepath)) + os.makedirs(os.path.dirname(args.filepath)) nodes = handler.nodes node_list = [] index = 1 |