Hi, When the CLI is used in the non-interactive mode, it is most likely > included in a (ex: Bash) script. In that case it should notify of the error > and continue, rather than hang up and wait for user input (thus the name > "non-interactive" :) ). WDYT?
I too agree. Like to know others' ideas too :) Just a minor point on the source code. > [image: Inline image 1] > In Configs.py I noticed that "~" symbol is used. Is this portable to > Windows? If not let's keep that in mind and test only in Linux for now. We > will have to make it portable to Windows as well. > In Logging.py I'm using following code to get the path of the Stratos's dir( ".stratos" ) inside the user's home dir( "~/" ) , in platform independent manner. stratos_dir_path = os.path.expanduser(Configs.stratos_dir) But it seems it is better to add this part too to Configs.py :) Let's change that :)