Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ae289 commit c6668daCopy full SHA for c6668da
scripts/todo.py
@@ -17,7 +17,7 @@ def main():
17
"https://api.github.com/repos/python/python-docs-fr/issues"
18
).json()
19
reservations = {
20
- issue["title"].split()[-1]: issue["user"]["login"] for issue in issues
+ issue["title"].split()[-1].lower(): issue["user"]["login"] for issue in issues
21
}
22
23
po_files = [file for file in Path(".").glob("**/*.po") if ".git/" not in str(file)]
@@ -46,7 +46,7 @@ def main():
46
)
47
+ (
48
f", réservé par {reservations[str(po_file)]}"
49
- if str(po_file) in reservations
+ if str(po_file).lower() in reservations
50
else ""
51
52
0 commit comments