Update get-translator-credits script to run from project root

pull/9930/head
Matt Westcott 2023-01-20 12:59:36 +00:00
rodzic 224870aa38
commit 741c6185e9
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -8,7 +8,7 @@ from babel import Locale
authors_by_locale = defaultdict(set)
file_listing = subprocess.Popen(
"find ../wagtail -iname *.po", shell=True, stdout=subprocess.PIPE
"find ./wagtail -iname *.po", shell=True, stdout=subprocess.PIPE
)
for file_listing_line in file_listing.stdout: