Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1757)

Unified Diff: tools/isolate/run_test_from_archive.py

Issue 10389208: Fix Windows Download Path (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698