summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index 8cebc08..e8ac467 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -85,10 +85,10 @@ def dirname(s): return split(s)[0]
def basename(s): return split(s)[1]
def ismount(s):
- if not isabs(s):
- return False
- components = split(s)
- return len(components) == 2 and components[1] == ''
+ if not isabs(s):
+ return False
+ components = split(s)
+ return len(components) == 2 and components[1] == ''
def isdir(s):
"""Return true if the pathname refers to an existing directory."""