diff --git a/1.Base/2.ubicast_shell_access/0_setup.py b/1.Base/2.ubicast_shell_access/0_setup.py index 7bf32f55294a0230f2547f455df70533f6be97eb..09bf4bfa6e9bc7a7539966dc909c5e56475b71ca 100644 --- a/1.Base/2.ubicast_shell_access/0_setup.py +++ b/1.Base/2.ubicast_shell_access/0_setup.py @@ -13,13 +13,13 @@ def add_allowed_keys(path, keys): content = fo.read() elif not os.path.exists(os.path.dirname(path)): os.makedirs(os.path.dirname(path)) - new_content = content.strip() + new_content = content.strip() + '\n' for key in keys: key = key.strip() if not key: continue if key not in new_content: - new_content += '\n' + key + new_content += key + '\n' utils.log('The key "%s" will be added in "%s".' % (key.split(' ')[-1], path)) else: utils.log('The key "%s" is already in "%s".' % (key.split(' ')[-1], path))