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

Unified Diff: tools/push-to-trunk/common_includes.py

Issue 353813002: Fix clusterfuzz check in auto-roll. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | « tools/push-to-trunk/auto_roll.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/push-to-trunk/common_includes.py
diff --git a/tools/push-to-trunk/common_includes.py b/tools/push-to-trunk/common_includes.py
index 86d33ca0c0508c8711612a73d5499f2987b0f439..4dfb6d7d279449d7dfcc5c2f1e6dc66562899004 100644
--- a/tools/push-to-trunk/common_includes.py
+++ b/tools/push-to-trunk/common_includes.py
@@ -37,6 +37,7 @@ import subprocess
import sys
import textwrap
import time
+import urllib
import urllib2
from git_recipes import GitRecipesMixin
@@ -209,7 +210,7 @@ class SideEffectHandler(object): # pragma: no cover
url_fh.close()
def ReadClusterFuzzAPI(self, api_key, **params):
- params["api_key"] = api_key
+ params["api_key"] = api_key.strip()
params = urllib.urlencode(params)
headers = {"Content-type": "application/x-www-form-urlencoded"}
« no previous file with comments | « tools/push-to-trunk/auto_roll.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698