summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-04-01 17:03:08 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-04-01 17:03:08 -0300
commitcebbb1eaee51ad9a7e57016dfc62d53888bc5bd4 (patch)
tree66e6f0aa7c8008a84aefd90b36d1c5b64359e7e9
parent9376f72fb5ff2d34ad7c380c8dfbb2435601a63f (diff)
Cleanup strings.
-rw-r--r--src/leap/bitmask/util/leap_argparse.py7
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."))