Index: tools/isolate/run_test_from_archive.py |
diff --git a/tools/isolate/run_test_from_archive.py b/tools/isolate/run_test_from_archive.py |
index 13ded87aa6f0b82832013369609d40c169ecc6f0..11f9a90616c7e6e2ec1b5c16a6581daee360142b 100755 |
--- a/tools/isolate/run_test_from_archive.py |
+++ b/tools/isolate/run_test_from_archive.py |
@@ -217,7 +217,7 @@ class Cache(object): |
return False |
except ValueError: |
out = self.path(item) |
- download_or_copy(os.path.join(self.remote, item), out) |
+ download_or_copy(self.remote.rstrip('/') + '/' + item, out) |
M-A Ruel
2012/05/18 17:42:29
technically, you could have used posixpath but it'
|
if os.path.exists(out): |
self.state.append(item) |
else: |