From 4c5c3df299e9c8861bb5ab94f4de7e3c2c173eae Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Sun, 5 Jan 2025 06:43:17 -0300 Subject: [PATCH] Update python script to point to TTLApp organization --- scripts/check_languages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_languages.py b/scripts/check_languages.py index c4cd678a..4c50c784 100644 --- a/scripts/check_languages.py +++ b/scripts/check_languages.py @@ -252,7 +252,7 @@ def get_new_issue_url(locale : str, missing_translations : dict) -> str: body += '\n```\n{}\n```\n\n'.format(json.dumps(missing_translations, indent=2)) except: body += '\n```\n{}\n```\n\n'.format(missing_translations) - base_url = f'https://github.com/thamara/time-to-leave/issues/new?labels=localization,good+first+issue,Hacktoberfest' + base_url = f'https://github.com/TTLApp/time-to-leave/issues/new?labels=localization,good+first+issue,Hacktoberfest' opts = { 'body': body , 'title': f'Add missing translations for {language}'} return f'[(Open issue)]({add_url_params(base_url, opts)})'