summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorAlan Fregtman <941331+darkvertex@users.noreply.github.com>2021-07-26 10:53:25 -0400
committerAlan Fregtman <941331+darkvertex@users.noreply.github.com>2021-07-26 10:53:25 -0400
commit353f3fc4bb73cc9967dfb2beff8892e7cb23b7a6 (patch)
tree775aaeb9daad83e386272877099db6787f3e54df /setuptools
parent9bba4bc6e4dfbbe2b4d454ac6521ebe3d3c45fb1 (diff)
downloadpython-setuptools-git-353f3fc4bb73cc9967dfb2beff8892e7cb23b7a6.tar.gz
config.py: Fix line-too-long warning in _parse_list_glob()
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/config.py b/setuptools/config.py
index a25b0580..7ab6bfd7 100644
--- a/setuptools/config.py
+++ b/setuptools/config.py
@@ -260,7 +260,7 @@ class ConfigHandler:
def _parse_list_glob(cls, value, separator=','):
"""Equivalent to _parse_list() but expands any glob patterns using glob().
- However, unlike direct calls to glob(), the resolved results remain relative paths.
+ However, unlike with glob() calls, the results remain relative paths.
:param value:
:param separator: List items separator character.