Skip to content

Commit

Permalink
fix github link templates
Browse files Browse the repository at this point in the history
missing `%s` raises error on sphinx 6
  • Loading branch information
minrk committed May 24, 2023
1 parent 7112d17 commit 2f46bcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
templates_path = ["_templates"]
extlinks = {
"issue": ("https://github.com/jupyterhub/repo2docker/issues/%s", "Issue #"),
"pr": ("https://github.com/jupyterhub/repo2docker/pull/%s", "PR #"),
"user": ("https://github.com/%s", "@"),
"issue": ("https://github.com/jupyterhub/repo2docker/issues/%s", "Issue #%s"),
"pr": ("https://github.com/jupyterhub/repo2docker/pull/%s", "PR #%s"),
"user": ("https://github.com/%s", "@%s"),
}


Expand Down

0 comments on commit 2f46bcc

Please sign in to comment.