Python CLI - Minor fix to debug option
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/afc448c6 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/afc448c6 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/afc448c6 Branch: refs/heads/stratos-4.1.x Commit: afc448c60e443d2b7e98e488d34729d9b9820d83 Parents: 3781417 Author: Chamila de Alwis <[email protected]> Authored: Wed Oct 14 00:51:14 2015 +0530 Committer: Chamila de Alwis <[email protected]> Committed: Wed Oct 14 00:51:14 2015 +0530 ---------------------------------------------------------------------- .../org.apache.stratos.python.cli/src/main/python/cli/Configs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/afc448c6/components/org.apache.stratos.python.cli/src/main/python/cli/Configs.py ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.python.cli/src/main/python/cli/Configs.py b/components/org.apache.stratos.python.cli/src/main/python/cli/Configs.py index c4076ba..41a04e7 100644 --- a/components/org.apache.stratos.python.cli/src/main/python/cli/Configs.py +++ b/components/org.apache.stratos.python.cli/src/main/python/cli/Configs.py @@ -29,4 +29,4 @@ stratos_url = os.getenv('STRATOS_URL', "https://localhost:9443/") stratos_api_url = stratos_url + "api/" stratos_username = os.getenv('STRATOS_USERNAME', "") stratos_password = os.getenv('STRATOS_PASSWORD', "") -debug_cli = os.getenv('STRATOS_CLI_DEBUG', "false") +debug_cli = os.getenv('STRATOS_CLI_DEBUG', "False")
