Skip to content

Commit 7b44074

Browse files
authored
Update generate_status_table.py
1 parent 9bcdf47 commit 7b44074

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/generate_status_table.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
scripts/generate_status_table.py
44
55
Regenerate the per-file translation status table between marker comments in
6-
a markdown file (default: SOURCE.md) from the current state of all .po
6+
a markdown file (default: STATUS.md) from the current state of all .po
77
files. Meant to run on a schedule so the table never goes stale, replacing
88
the old Transifex-exported report.
99
1010
Requires: pip install polib
1111
1212
Usage:
1313
python3 scripts/generate_status_table.py
14-
python3 scripts/generate_status_table.py --file SOURCE.md
14+
python3 scripts/generate_status_table.py --file STATUS.md
1515
"""
1616
import argparse
1717
import re
@@ -58,7 +58,7 @@ def build_table() -> str:
5858

5959
def main():
6060
parser = argparse.ArgumentParser(description=__doc__)
61-
parser.add_argument("--file", default="SOURCE.md",
61+
parser.add_argument("--file", default="STATUS.md",
6262
help="Markdown file containing the marker block to update")
6363
args = parser.parse_args()
6464

0 commit comments

Comments
 (0)