summaryrefslogtreecommitdiff
path: root/src/leap/util
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2013-07-29 09:27:21 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2013-07-29 09:27:21 -0300
commitca954cf70544a249e100400d7648c553ccba8d5f (patch)
tree6b6a7499e2fd4bcea66fde2afac45fdebb176f03 /src/leap/util
parentea9700b4a74a9cd991701f3394d11804cdad44cb (diff)
Keep the --danger flag enabled by now.
Diffstat (limited to 'src/leap/util')
-rw-r--r--src/leap/util/leap_argparse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/util/leap_argparse.py b/src/leap/util/leap_argparse.py
index db02e5e7..bdf80401 100644
--- a/src/leap/util/leap_argparse.py
+++ b/src/leap/util/leap_argparse.py
@@ -31,7 +31,8 @@ Launches the LEAP Client""", epilog=epilog)
parser.add_argument('-d', '--debug', action="store_true",
help=("Launches client in debug mode, writing debug"
"info to stdout"))
- if not IS_RELEASE_VERSION:
+ # TODO: when we are ready to disable the --danger flag remove 'True or '
+ if True or not IS_RELEASE_VERSION:
help_text = "Bypasses the certificate check for bootstrap"
parser.add_argument('--danger', action="store_true", help=help_text)