diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-09-12 12:08:58 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2013-09-12 12:08:58 -0300 |
commit | 91f6dd2aaab40a099cd1dcba039215e08e3819e6 (patch) | |
tree | 50a19f2c137d7eb49eb911d89629a51c76ff7a5f /src/leap/bitmask/util/leap_argparse.py | |
parent | 5d00da0874280eca3720ff010ff55590332468c1 (diff) | |
parent | 061c2aae0821f1e37b1de5b0347077ecfb276b65 (diff) |
Merge remote-tracking branch 'kali/feature/add-version-flag' into develop
Diffstat (limited to 'src/leap/bitmask/util/leap_argparse.py')
-rw-r--r-- | src/leap/bitmask/util/leap_argparse.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py index bc21a9cf..afe5be48 100644 --- a/src/leap/bitmask/util/leap_argparse.py +++ b/src/leap/bitmask/util/leap_argparse.py @@ -27,7 +27,7 @@ def build_parser(): All the options for the leap arg parser Some of these could be switched on only if debug flag is present! """ - epilog = "Copyright 2012 The LEAP Encryption Access Project" + epilog = "Copyright 2012-2013 The LEAP Encryption Access Project" parser = argparse.ArgumentParser(description=""" Launches Bitmask""", epilog=epilog) parser.add_argument('-d', '--debug', action="store_true", @@ -50,6 +50,8 @@ Launches Bitmask""", epilog=epilog) help='Makes Bitmask use standalone' 'directories for configuration and binary' 'searching') + parser.add_argument('-V', '--version', action="store_true", + help='Displays Bitmask version and exits') # Not in use, we might want to reintroduce them. #parser.add_argument('-i', '--no-provider-checks', |