Skip to content

Commit

Permalink
fix target year
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenpieters committed Feb 16, 2024
1 parent 9f7466e commit 0aa92ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/convert.yaml
Expand Up @@ -34,7 +34,7 @@ jobs:
run: pip install -r requirements.txt

- name: Convert input files
run: python3 -m rules_doc_generator -a -t all -m 02 -d 16
run: python3 -m rules_doc_generator -a -t all -m 02 -d 16 -y 2024

- name: Create pdf output
run: latexmk -pdf -jobname=latex/rules latex/rules.tex
Expand Down
2 changes: 1 addition & 1 deletion rules_doc_generator/__main__.py
Expand Up @@ -10,7 +10,7 @@
# Parse command line arguments.
parser = ArgumentParser()
parser.add_argument("-a", "--annotated", default=False, help="Also generate annotated version with highlights of new parts", action="store_true")
parser.add_argument("-y", "--year", default="2023", help="Effective year", action="store")
parser.add_argument("-y", "--year", default="XXXX", help="Effective year", action="store")
parser.add_argument("-m", "--month", default="XX", help="Effective month", action="store")
parser.add_argument("-d", "--day", default="XX", help="Effective day", action="store")
parser.add_argument("-b", "--php-base-path", default="https://example.org/", help="Basepath of php server", action="store")
Expand Down

0 comments on commit 0aa92ff

Please sign in to comment.