summaryrefslogtreecommitdiff
path: root/fs/osfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/osfs.py')
-rw-r--r--fs/osfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/osfs.py b/fs/osfs.py
index f99b8fc..bee807c 100644
--- a/fs/osfs.py
+++ b/fs/osfs.py
@@ -131,7 +131,7 @@ class OSFS(FS):
def rename(self, src, dst):
if not issamedir(src, dst):
- raise ValueError("Destination path must the same directory (user the move method for moving to a different directory)")
+ raise ValueError("Destination path must the same directory (use the move method for moving to a different directory)")
path_src = self.getsyspath(src)
path_dst = self.getsyspath(dst)
try: