summaryrefslogtreecommitdiff
path: root/fs/mountfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-12-26 20:52:33 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-12-26 20:52:33 +0000
commitb0885a312f4f57c67758850be245db5a34e5c71f (patch)
treeb332b5ce21a5842eea21fa68a627c859d12234d2 /fs/mountfs.py
parentfafea9afc1fc576062c5c8070ec46ace8183be49 (diff)
downloadpyfilesystem-b0885a312f4f57c67758850be245db5a34e5c71f.tar.gz
First stab at a Python3 port
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@724 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/mountfs.py')
-rw-r--r--fs/mountfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index 03e0531..dc5fe5e 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -91,7 +91,7 @@ class MountFS(FS):
__repr__ = __str__
def __unicode__(self):
- return unicode(self.__str__())
+ return u"<%s [%s]>" % (self.__class__.__name__,self.mount_tree.items(),)
def _delegate(self, path):
path = abspath(normpath(path))