From 782dc94b4f0995e7e5bbbbee3bbe7cc01071e351 Mon Sep 17 00:00:00 2001 From: "sergeyberezin@chromium.org" Date: Thu, 27 Mar 2014 19:06:33 +0000 Subject: [PATCH] Fixing inadvertant CQ breakage from depot tools change. CL that cause the issue: https://codereview.chromium.org/183793010 Symptoms: commit queue presubmit checks failed. BUG=None Review URL: https://codereview.chromium.org/215163003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@259947 0039d316-1c4b-4281-b951-d872f2087c98 --- rietveld.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rietveld.py b/rietveld.py index 4b70ec3a1..88a1b29ae 100644 --- a/rietveld.py +++ b/rietveld.py @@ -40,6 +40,9 @@ class Rietveld(object): """Accesses rietveld.""" def __init__(self, url, email, password, extra_headers=None): self.url = url.rstrip('/') + # Email and password are accessed by commit queue, keep them. + self.email = email + self.password = password # TODO(maruel): It's not awesome but maybe necessary to retrieve the value. # It happens when the presubmit check is ran out of process, the cookie # needed to be recreated from the credentials. Instead, it should pass the