summaryrefslogtreecommitdiff
path: root/fs/ftpfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-08-07 15:12:10 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-08-07 15:12:10 +0000
commitc56e8ae62cd42495243fd4d6df75e6d4cdab5023 (patch)
treeba26b1383d532e357fb9167533a74ddbcf343a90 /fs/ftpfs.py
parent462723b623deb6565056a3ac516c3fcc6216e0c3 (diff)
downloadpyfilesystem-git-c56e8ae62cd42495243fd4d6df75e6d4cdab5023.tar.gz
Fixes and documentation
Diffstat (limited to 'fs/ftpfs.py')
-rw-r--r--fs/ftpfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ftpfs.py b/fs/ftpfs.py
index 5743ad2..b5b53bb 100644
--- a/fs/ftpfs.py
+++ b/fs/ftpfs.py
@@ -1209,7 +1209,7 @@ class FTPFS(FS):
@ftperrors
def listdir(self, path="./", wildcard=None, full=False, absolute=False, dirs_only=False, files_only=False):
path = normpath(path)
- self.clear_dircache(path)
+ #self.clear_dircache(path)
if not self.exists(path):
raise ResourceNotFoundError(path)
if not self.isdir(path):