cli: fix intro message

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2012-11-05 21:38:16 +05:30
parent 5611a8eda2
commit 8c12f49dbe
1 changed files with 2 additions and 1 deletions

View File

@ -69,7 +69,8 @@ class CloudStackShell(cmd.Cmd):
for key in self.config_fields.keys():
setattr(self, key, self.config_fields[key])
config = self.write_config()
print("Set your api and secret keys, host, port etc. using the set command!")
print("Set your apiKey, secretKey, host, port, prompt, color, "
"log_file, history_file using the set command!")
for key in self.config_fields.keys():
setattr(self, key, config.get('CLI', key))