Skip to content

Commit

Permalink
Fix broken email link in docs feedback banners
Browse files Browse the repository at this point in the history
'docs-feedback+ux/[email protected]' isn't a valid email address, so
I replaced it with the right email address according to this GitHub
comment:

pypa#8783 (comment)
  • Loading branch information
ichard26 committed Dec 24, 2020
1 parent f30a02c commit a61586c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/docs_feedback_sphinxext.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def setup(app: Sphinx) -> Dict[str, Union[bool, str]]:
)
app.add_config_value(
'docs_feedback_email',
default='Docs UX Team <docs-feedback+ux/pip.pypa.io@pypa.io>',
default='Docs UX Team <[email protected]>',
rebuild=rebuild_trigger,
)
app.add_config_value(
Expand Down
2 changes: 1 addition & 1 deletion docs/html/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def to_document_name(path, base_dir):
# NOTE: 'important', 'note', 'tip', 'warning' or 'admonition'.
docs_feedback_admonition_type = 'important'
docs_feedback_big_doc_lines = 50 # bigger docs will have a banner on top
docs_feedback_email = 'Docs UX Team <docs-feedback+ux/pip.pypa.io@pypa.io>'
docs_feedback_email = 'Docs UX Team <[email protected]>'
docs_feedback_excluded_documents = { # these won't have any banners
'news', 'reference/index',
}
Expand Down
1 change: 1 addition & 0 deletions news/9343.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix broken email link in docs feedback banners.

0 comments on commit a61586c

Please sign in to comment.