diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-21 15:01:02 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-21 15:01:02 -0400 |
| commit | 486da9edad25eb9ef06aebe884fb09397840a584 (patch) | |
| tree | d7218ed0383283e2bccd075ad4da540be2617292 /scripts | |
| parent | 20c34833bbc105675d014c8a0a4d2b17fc787c26 (diff) | |
Change date format
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/mandoc_gen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mandoc_gen.py b/scripts/mandoc_gen.py index 66db07be..66dedd1f 100755 --- a/scripts/mandoc_gen.py +++ b/scripts/mandoc_gen.py @@ -74,7 +74,7 @@ Name Type Description Default''' def write_method(f, name, info): def add_line(line): f.write(line + "\n") year = datetime.now().strftime("%Y") - date = datetime.now().isoformat() + date = datetime.now().strftime("%Y-%m-%d") signature = get_signature(name, info) add_line(template.format(year=year, date=date, name=name, short=info["short"], description=info["description"], signature=signature)) |
