Skip to content

Commit

Permalink
launcher: add description text for help page
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJJ committed Jan 27, 2017
1 parent 199a49e commit 92906b0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions openage/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2015-2016 the openage authors. See copying.md for legal info.
# Copyright 2015-2017 the openage authors. See copying.md for legal info.

"""
Behold: The central entry point for all of openage.
Expand Down Expand Up @@ -31,7 +31,10 @@ def __call__(self, parser, namespace, values, option_string=None):

def main(argv=None):
""" Top-level argparsing; invokes subparser for all submodules. """
cli = argparse.ArgumentParser("openage")
cli = argparse.ArgumentParser(
"openage",
description=("free age of empires II engine clone")
)

cli.add_argument("--version", "-V", nargs=0, action=PrintVersion,
help="print version info and exit")
Expand Down

0 comments on commit 92906b0

Please sign in to comment.