52
52
"""List the content of a directory."""
54
53
return [osutils.safe_utf8(s) for s in os.listdir(path)]
56
55
def fs2ftp(self, fspath):
57
56
p = ftpserver.AbstractedFS.fs2ftp(self, fspath)
59
57
return osutils.safe_utf8(p)
62
63
class BzrConformingFTPHandler(ftpserver.FTPHandler):