diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-06-30 14:51:53 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-06-30 14:51:53 -0300 |
commit | cae0889b4a8d915855c375f6d828659931e24df2 (patch) | |
tree | 1c9912c02762ebbea4df2dc63d666ca5f1843b48 /src/leap | |
parent | b92d63030015e46db666f9d3543f9f75d3b54fba (diff) |
Add the flag manually if it is release version.
Diffstat (limited to 'src/leap')
-rw-r--r-- | src/leap/bitmask/util/leap_argparse.py | 2 |
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 |