Skip to content

Commit 1c022b1

Browse files
author
Maciej Olko
committed
Rename script, style of comment, remove debug print
1 parent d8c944e commit 1c022b1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- run: pip install transifex-client requests numpy
1616
- uses: actions/checkout@master
1717
- run: cp .github/workflows/.transifexrc $HOME
18-
- run: ./manage_translations.py fetch
18+
- run: ./manage_translation.py fetch
1919
env:
2020
TX_TOKEN: ${{ secrets.TX_TOKEN }}
21-
- run: ./manage_translations.py recreate_readme
21+
- run: ./manage_translation.py recreate_readme
2222
env:
2323
TX_TOKEN: ${{ secrets.TX_TOKEN }}
2424
- run: git config --local user.email 'maciej.olko@gmail.com'
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env python
22
#
3-
# This python file contains utility scripts to manage Python docs Polish translations.
3+
# This python file contains utility scripts to manage Python docs Polish translation.
44
# It has to be run inside the python-docs-pl git root directory.
55
#
66
# Inspired by django-docs-translations script by claudep.
77
#
8-
# The following command is available:
8+
# The following commands are available:
99
#
1010
# * fetch: fetch translations from transifex.com and strip source lines from the
1111
# files.
@@ -37,7 +37,6 @@ def fetch():
3737
if not po_file.endswith(".po"):
3838
continue
3939
po_path = os.path.join(root, po_file)
40-
print(po_path)
4140
call(f'msgcat --no-location -o {po_path} {po_path}', shell=True)
4241

4342

0 commit comments

Comments
 (0)