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 30db76f commit 95f9fe2Copy full SHA for 95f9fe2
generate.py
@@ -21,7 +21,7 @@
21
clone_path = Path(tmpdir, language)
22
for branch in ('3.13', '3.12', '3.11', '3.10', '3.9'):
23
try:
24
- Repo.clone_from(f'git@github.com:python/python-docs-{language}.git', clone_path, depth=1, branch=branch)
+ Repo.clone_from(f'https://github.com/python/python-docs-{language}.git', clone_path, depth=1, branch=branch)
25
except GitCommandError as e:
26
print(f'failed to clone {language} {branch}')
27
continue
0 commit comments