summaryrefslogtreecommitdiff
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2002-04-23 02:38:39 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2002-04-23 02:38:39 +0000
commit90282b4c559d4f64c7cefd7dbdfdb2f2de35772f (patch)
treeefb18387c1ab9fd01b3d16e343cd9a9f0bca09bc /Lib/macpath.py
parentf0f59dc76827c7ab2832b8244b21ca67c2ceb24e (diff)
downloadcpython-90282b4c559d4f64c7cefd7dbdfdb2f2de35772f.tar.gz
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 24f4a141d4..d358bd2018 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