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
@ -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…
x
Reference in New Issue
Block a user