summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-19 12:04:34 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-19 12:04:34 +0000
commitb7ae0c39a4343e5fe4705d21cc2cfdbbd1264671 (patch)
tree3426bbc437f2737cb2e8fd90384bee5707e7f371
parentda754336e5e57dd81de2b1206608059d13dd9d02 (diff)
downloadpyfilesystem-b7ae0c39a4343e5fe4705d21cc2cfdbbd1264671.tar.gz
Tweak to __str__
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@86 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/osfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/osfs.py b/fs/osfs.py
index dad403c..24a0f31 100644
--- a/fs/osfs.py
+++ b/fs/osfs.py
@@ -22,7 +22,7 @@ class OSFS(FS):
self.root_path = normpath(os.path.abspath(expanded_path))
def __str__(self):
- return "<OSFS %s>" % self.root_path
+ return "<OSFS: %s>" % self.root_path
__repr__ = __str__