Skip to content

Commit 9b7a361

Browse files
committed
Fix usage
1 parent 3edbde3 commit 9b7a361

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

generate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import translated_names
1616
import contribute
17-
from completion import branches_from_devguide, get_completion
17+
from completion import branches_from_peps, get_completion
1818
from repositories import Language, get_languages_and_repos
1919

2020
generation_time = datetime.now(timezone.utc)
@@ -27,7 +27,7 @@ def get_completion_progress() -> Iterator['LanguageProjectData']:
2727
devguide_dir := Path(clones_dir, 'devguide'),
2828
depth=1,
2929
)
30-
latest_branch = branches_from_devguide(devguide_dir)[0]
30+
latest_branch = branches_from_peps()[0]
3131
Repo.clone_from(
3232
'https://github.com/python/cpython.git',
3333
cpython_dir := Path(clones_dir, 'cpython'),

0 commit comments

Comments
 (0)