Added descriptions to doc_scripts.py and gallery.py.

This commit is contained in:
Chris Palmer 2020-03-15 16:11:27 +00:00
parent 4914f90994
commit b2c2fc668b
2 changed files with 2 additions and 2 deletions

View File

@ -75,5 +75,5 @@ They should work with both Python 2 and Python 3.
if __name__ == '__main__':
argparse.ArgumentParser().parse_args()
argparse.ArgumentParser(description='Generate scripts/readme.md and make html versions of that and doc/usage.md').parse_args()
doc_scripts()

View File

@ -78,7 +78,7 @@ def gallery(force):
if __name__ == '__main__':
init()
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(description='Creates a galley of projects by copying the top level image and description to gallery/readme.md.')
parser.add_argument("-f", help = "run make_all in each project to force update", action="store_true")
args = parser.parse_args()