-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken email link in docs feedback banners
'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
Showing
3 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix broken email link in docs feedback banners. |