diff options
| author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-04-01 17:03:08 -0300 | 
|---|---|---|
| committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-04-01 17:03:08 -0300 | 
| commit | cebbb1eaee51ad9a7e57016dfc62d53888bc5bd4 (patch) | |
| tree | 66e6f0aa7c8008a84aefd90b36d1c5b64359e7e9 /src | |
| parent | 9376f72fb5ff2d34ad7c380c8dfbb2435601a63f (diff) | |
Cleanup strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/leap/bitmask/util/leap_argparse.py | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py index 56bf26dc..7f81881d 100644 --- a/src/leap/bitmask/util/leap_argparse.py +++ b/src/leap/bitmask/util/leap_argparse.py @@ -27,9 +27,10 @@ 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-2014 The LEAP Encryption Access Project" -    parser = argparse.ArgumentParser(description=""" -Launches the Bitmask client.""", epilog=epilog) +    parser = argparse.ArgumentParser( +        description="Launches the Bitmask client.", +        epilog="Copyright 2012-2014 The LEAP Encryption Access Project") +      parser.add_argument('-d', '--debug', action="store_true",                          help=("Launches Bitmask in debug mode, writing debug "                                "info to stdout.")) | 
