10000
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 e4564bb commit cc0603cCopy full SHA for cc0603c
scripts/create_issue.py
@@ -40,8 +40,9 @@
40
sys.exit(1)
41
42
# https://pygithub.readthedocs.io/en/latest/github_objects/Repository.html#github.Repository.Repository.create_issue
43
+title = f'Translate `{pofilename}`'
44
issue = repo.create_issue(
- title=f'Translate `{pofilename}`',
45
+ title=title,
46
body=f'''This needs to reach 100% translated.
47
48
Current stats for `{pofilename}`:
@@ -55,4 +56,4 @@
55
56
57
Remember to follow the steps in our [Contributing Guide](https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html).''',
58
)
-print(f'Issue created at {issue.html_url}')
59
+print(f'Issue "{title}" created at {issue.html_url}')
0 commit comments