summaryrefslogtreecommitdiff
path: root/src/leap
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2014-06-30 14:56:21 -0300
committerTomás Touceda <chiiph@leap.se>2014-06-30 14:56:21 -0300
commit1e456b0fff46001641a736bc5932314e9d00b1bc (patch)
tree1c9912c02762ebbea4df2dc63d666ca5f1843b48 /src/leap
parentb92d63030015e46db666f9d3543f9f75d3b54fba (diff)
parentcae0889b4a8d915855c375f6d828659931e24df2 (diff)
Merge remote-tracking branch 'refs/remotes/ivan/bug/properly-use-of-release-version-flag' into develop
Diffstat (limited to 'src/leap')
-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