summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2002-04-23 02:38:39 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2002-04-23 02:38:39 (GMT)
commitae7639dbfb743f613fe92da1ed72216a49cccf1a (patch)
tree6ba24ed5499d1c1462bff0734ec8ee8ec18e84f9 /Lib/macpath.py
parent4ce6b351cce6e202568ec499fc0d717d65c0c1d7 (diff)
downloadcpython-ae7639dbfb743f613fe92da1ed72216a49cccf1a.zip
cpython-ae7639dbfb743f613fe92da1ed72216a49cccf1a.tar.gz
cpython-ae7639dbfb743f613fe92da1ed72216a49cccf1a.tar.bz2
whitespace fixup. test__all__ and test_sundry were failing
for me on linux because of the inconsistent whitespace.
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index 24f4a14..d358bd2 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -125,7 +125,7 @@ def islink(s):
"""Return true if the pathname refers to a symbolic link."""
try:
- import macfs
+ import macfs
return macfs.ResolveAliasFile(s)[2]
except:
return False