diff options
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 4b78d8d223..ac928e1a92 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -257,7 +257,7 @@ lexists = exists def ismount(path): """Test whether a path is a mount point (defined as root of drive)""" unc, rest = splitunc(path) - seps = _get_bothseps(p) + seps = _get_bothseps(path) if unc: return rest in p[:0] + seps p = splitdrive(path)[1] |