diff options
Diffstat (limited to 'Lib/dospath.py')
-rw-r--r-- | Lib/dospath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dospath.py b/Lib/dospath.py index cfc0d86..b4aab49 100644 --- a/Lib/dospath.py +++ b/Lib/dospath.py @@ -141,7 +141,7 @@ def islink(path): """Is a path a symbolic link? This will always return false on systems where posix.lstat doesn't exist.""" - return 0 + return False def exists(path): |