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

Unified Diff: tools/skp/webpages_playback.py

Issue 2429513002: RecreateSKPs: Fix another .join() issue (Closed)
Patch Set: Created 4 years, 2 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/skp/webpages_playback.py
diff --git a/tools/skp/webpages_playback.py b/tools/skp/webpages_playback.py
index 2e2b6a4bc5e936b33f28f63c729062aac8ae23f0..e8c049c3207a7975570479c9c0326c4dcf031489 100644
--- a/tools/skp/webpages_playback.py
+++ b/tools/skp/webpages_playback.py
@@ -493,7 +493,7 @@ class GoogleStorageDataStore(DataStore):
def upload_dir_contents(self, source_dir, dest_dir):
subprocess.check_call([
- 'gsutil', 'cp', '-r', source_dir, '/'.join(self._url, dest_dir)])
+ 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
class LocalFileSystemDataStore(DataStore):
« 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