summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2012-11-26 20:24:58 +0000
committerwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2012-11-26 20:24:58 +0000
commitb39b373f5c38fd5d7a058c879e433dbd3128abbc (patch)
tree455b421aebc28a71f03c7d2b00be9b525a2edba5
parent414513daf0f0a816b0316e33e96abee6e1d08486 (diff)
downloadpyfilesystem-b39b373f5c38fd5d7a058c879e433dbd3128abbc.tar.gz
fix
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@831 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/path.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/path.py b/fs/path.py
index 517afd4..4c0814f 100644
--- a/fs/path.py
+++ b/fs/path.py
@@ -77,7 +77,7 @@ else:
def normospath(path):
"""Normalizes a path with os separators"""
- return normpath(ospath)
+ return normpath(ospath(path))
def iteratepath(path, numsplits=None):