Update ss13_genchangelog.py (#11445)

This commit is contained in:
TheGamerdk
2021-05-13 16:20:29 +02:00
committed by GitHub
parent 01d872f425
commit a1f676937a

View File

@@ -36,7 +36,7 @@ dateformat = "%d %B %Y"
opt = argparse.ArgumentParser()
opt.add_argument('-d', '--dry-run', dest='dryRun', default=False, action='store_true', help='Only parse changelogs and, if needed, the targetFile. (A .dry_changelog.yml will be output for debugging purposes.)')
opt.add_argument('-t', '--time-period', dest='timePeriod', default=9, type=int, help='Define how many weeks back the changelog should display')
opt.add_argument('-t', '--time-period', dest='timePeriod', default=13, type=int, help='Define how many weeks back the changelog should display')
opt.add_argument('targetFile', help='The HTML changelog we wish to update.')
opt.add_argument('ymlDir', help='The directory of YAML changelogs we will use.')