summaryrefslogtreecommitdiff
path: root/fs/mountfs.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-04 05:51:16 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-06-04 05:51:16 +0000
commit9a23be35ebaac211da6a67e63a0fc46f142558b3 (patch)
treed3b6f4ec89f1ca9c365a6669ce9c3708b89d0f7b /fs/mountfs.py
parent00abdcdb43051f9628ef1e729dae82674141af8a (diff)
downloadpyfilesystem-9a23be35ebaac211da6a67e63a0fc46f142558b3.tar.gz
Rename 'helpers' to 'path'.
Split tests up into several smaller modules git-svn-id: http://pyfilesystem.googlecode.com/svn/branches/rfk-ideas@152 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/mountfs.py')
-rw-r--r--fs/mountfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index 742b4d7..777dfd3 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -128,9 +128,9 @@ class MountFS(FS):
files_only=files_only)
if full or absolute:
if full:
- path = makeabsolute(path)
+ path = abspath(path)
else:
- path = makerelative(path)
+ path = relpath(path)
paths = [pathjoin(path, p) for p in paths]
return paths