Added descriptions to doc_scripts.py and gallery.py.
This commit is contained in:
parent
4914f90994
commit
b2c2fc668b
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue