summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-06-30 14:51:53 -0300
committerTomás Touceda <chiiph@leap.se>2014-07-21 12:02:59 -0300
commitca8cc632974601467fad6aa204c06a8c65963965 (patch)
tree1c9912c02762ebbea4df2dc63d666ca5f1843b48
parent1f1e9df6ca83ad6a135c5ff8c6bade81707fe008 (diff)
Add the flag manually if it is release version.
-rw-r--r--src/leap/bitmask/util/leap_argparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py
index b7428488..c7fed0a3 100644
--- a/src/leap/bitmask/util/leap_argparse.py
+++ b/src/leap/bitmask/util/leap_argparse.py
@@ -134,7 +134,7 @@ def get_options():
opts, unknown = parser.parse_known_args()
# we add this option manually since it's not defined for 'release version'
- if not IS_RELEASE_VERSION:
+ if IS_RELEASE_VERSION:
opts.danger = False
return opts