diff options
Diffstat (limited to 'setuptools/command/py36compat.py')
| -rw-r--r-- | setuptools/command/py36compat.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/py36compat.py b/setuptools/command/py36compat.py index 883221da..def5906a 100644 --- a/setuptools/command/py36compat.py +++ b/setuptools/command/py36compat.py @@ -39,9 +39,9 @@ class sdist_add_defaults: """ Case-sensitive path existence check - >>> sdist._cs_path_exists(__file__) + >>> sdist_add_defaults._cs_path_exists(__file__) True - >>> sdist._cs_path_exists(__file__.upper()) + >>> sdist_add_defaults._cs_path_exists(__file__.upper()) False """ if not os.path.exists(fspath): |
