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

Unified Diff: tools/skp/webpages_playback.py

Issue 2409593002: webpages_playback: Fix GS path with extra '/' (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 356550cb2f921e7995a36a466a90eed50b2e45f9..67bb198e50d1f683168bfc97e2eeb5f96873982b 100644
--- a/tools/skp/webpages_playback.py
+++ b/tools/skp/webpages_playback.py
@@ -466,7 +466,7 @@ class DataStore:
class GoogleStorageDataStore(DataStore):
def __init__(self, data_store_url):
- self._url = data_store_url
+ self._url = data_store_url.rstrip('/')
def target_name(self):
return self._url
« 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