From 6c3c3260136b0d44c75958905c541dfcb23393cc Mon Sep 17 00:00:00 2001 From: "agable@chromium.org" Date: Wed, 26 Mar 2014 17:08:51 +0000 Subject: [PATCH] Let ReadOnlyRietveld access the password. The commit queue can't successfully run presubmit checks on top of ReadOnlyRietveld because it requires access to the password field to pass through to presubmit_shim. R=phajdan.jr@chromium.org Review URL: https://codereview.chromium.org/197213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@259611 0039d316-1c4b-4281-b951-d872f2087c98 --- rietveld.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rietveld.py b/rietveld.py index aad998e9c..d25336823 100644 --- a/rietveld.py +++ b/rietveld.py @@ -517,6 +517,10 @@ class ReadOnlyRietveld(object): def email(self): return self._rietveld.email + @property + def password(self): + return self._rietveld.password + def get_pending_issues(self): pending_issues = self._rietveld.get_pending_issues()