summaryrefslogtreecommitdiff
path: root/fs/ftpfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-02 21:17:58 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-02 21:17:58 +0000
commitf02e1aeb4104cdf05628c7777c1879b4258be3f9 (patch)
tree9e64d9e738c99b9fe3a6ded1ce706a4d0d0e1b92 /fs/ftpfs.py
parentb7dbf13f40bf766fc19ce43d7861b98ca9edbcda (diff)
downloadpyfilesystem-f02e1aeb4104cdf05628c7777c1879b4258be3f9.tar.gz
More documentation
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@311 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/ftpfs.py')
-rw-r--r--fs/ftpfs.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ftpfs.py b/fs/ftpfs.py
index cb5c297..4f3371d 100644
--- a/fs/ftpfs.py
+++ b/fs/ftpfs.py
@@ -2,7 +2,7 @@
fs.ftpfs
========
-Filesystem for accessing an FTP server (uses ftplib in standard library)
+FTPS is a filesystem for accessing an FTP server (uses ftplib in standard library)
"""
@@ -26,6 +26,8 @@ except ImportError:
import time
import sys
+__all__ = ['FTPFS']
+
# -----------------------------------------------
# Taken from http://www.clapper.org/software/python/grizzled/
# -----------------------------------------------