diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-07-29 10:39:33 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-07-29 10:39:33 -0300 |
commit | b39584175fda25d812dbb90d3fa171f7a50e3914 (patch) | |
tree | d2534eb72fe414db0f740b2e136f318f77ea8b69 /src | |
parent | 0b02078c3b0de38103fb21294405422d4113177b (diff) | |
parent | ca954cf70544a249e100400d7648c553ccba8d5f (diff) |
Merge remote-tracking branch 'ivan/feature/keep-danger-enabled' into develop
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/util/leap_argparse.py | 3 |
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) |