mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
fix typo in warning (#20620)
* Add space after period to warning in _tzpath.py Currently: InvalidTZPathWarning: Invalid paths specified in PYTHONTZPATH environment variable.Paths should be absolute but found the following relative paths: ... * Update _tzpath.py
This commit is contained in:
parent
a89d8a94a0
commit
a31cf86bc2
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def _parse_python_tzpath(env_var):
|
|||
msg = _get_invalid_paths_message(raw_tzpath)
|
||||
|
||||
warnings.warn(
|
||||
"Invalid paths specified in PYTHONTZPATH environment variable."
|
||||
"Invalid paths specified in PYTHONTZPATH environment variable. "
|
||||
+ msg,
|
||||
InvalidTZPathWarning,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue