summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/util/leap_argparse.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-10-30 16:33:41 -0200
committerKali Kaneko <kali@leap.se>2013-10-30 16:33:41 -0200
commit8766b396cb7faf84c6eab3b2516229c791fe2e90 (patch)
tree7fae4c8ae7119d58c98ecc8c13b6ad3d2a009a77 /src/leap/bitmask/util/leap_argparse.py
parentf22b1a04f892857d162d87f9c9e120e7c5daadf7 (diff)
parenta06b5719f028e619a4b3800fb346ed3c984e4d25 (diff)
Merge tag '0.3.5' into debian
Tag leap.bitmask version 0.3.5 Conflicts: .gitignore pkg/requirements.pip
Diffstat (limited to 'src/leap/bitmask/util/leap_argparse.py')
-rw-r--r--src/leap/bitmask/util/leap_argparse.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py
index afe5be48..e8a9fda9 100644
--- a/src/leap/bitmask/util/leap_argparse.py
+++ b/src/leap/bitmask/util/leap_argparse.py
@@ -33,8 +33,7 @@ Launches Bitmask""", epilog=epilog)
parser.add_argument('-d', '--debug', action="store_true",
help=("Launches Bitmask in debug mode, writing debug"
"info to stdout"))
- # TODO: when we are ready to disable the --danger flag remove 'True or '
- if True or not IS_RELEASE_VERSION:
+ if not IS_RELEASE_VERSION:
help_text = "Bypasses the certificate check for bootstrap"
parser.add_argument('--danger', action="store_true", help=help_text)