diff options
author | KorenLev <korenlev@gmail.com> | 2018-05-08 11:33:26 -0400 |
---|---|---|
committer | KorenLev <korenlev@gmail.com> | 2018-05-08 11:33:26 -0400 |
commit | 802ba9cd2e1412ad20bd36009cb052b7e1e1b07e (patch) | |
tree | 7313de9ff8a38a4e8504d77b5ac2e9e72d1bbbb0 | |
parent | 9196554c5906ea3c8300702a50410fcc40de270c (diff) |
per yaron's review remove redundant lines for mkdir function
Change-Id: I260605fe8ac5bcfe01d5907eb4aef765e81f10a7
Signed-off-by: KorenLev <korenlev@gmail.com>
-rw-r--r-- | app/install/calipso-installer.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/install/calipso-installer.py b/app/install/calipso-installer.py index 687504a..b101907 100644 --- a/app/install/calipso-installer.py +++ b/app/install/calipso-installer.py @@ -435,8 +435,6 @@ while container != "all" and container not in container_names: # create local directory on host, raise error if it doesn't exists try: - os.makedirs(H_DIR) - os.makedirs(H_DIR+'log') os.makedirs(H_DIR+'log/calipso') except OSError as e: if e.errno != errno.EEXIST: |