From ccd6a43c6636a9b512656c8b1332b247c7903ea1 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sat, 19 Jun 2010 13:10:18 +0100 Subject: [PATCH] Fixed unicode/str error --- zeroinstall/zerostore/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zeroinstall/zerostore/manifest.py b/zeroinstall/zerostore/manifest.py index ab637f5..129135e 100644 --- a/zeroinstall/zerostore/manifest.py +++ b/zeroinstall/zerostore/manifest.py @@ -73,7 +73,7 @@ class OldSHA1(Algorithm): if sub == '/.manifest': return - full = os.path.join(root, str.replace(sub[1:], '/', os.sep)) + full = os.path.join(root, sub[1:].replace('/', os.sep)) info = os.lstat(full) m = info.st_mode -- 2.11.4.GIT