From fec0ce1756275882b4ac35d7cce7c046dbdba8b7 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sun, 21 May 2023 22:51:11 +0300 Subject: [PATCH] Better message for agent init when an existing clearml.conf is found --- clearml_agent/commands/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_agent/commands/config.py b/clearml_agent/commands/config.py index 7ca4a15..d8d2f49 100644 --- a/clearml_agent/commands/config.py +++ b/clearml_agent/commands/config.py @@ -44,7 +44,7 @@ def main(): if conf_file.exists() and conf_file.is_file() and conf_file.stat().st_size > 0: print('Configuration file already exists: {}'.format(str(conf_file))) - print('Leaving setup, feel free to edit the configuration file.') + print('Leaving setup. If you\'ve previously initialized the ClearML SDK on this machine, manually add an \'agent\' section to this file.') return print(description, end='')