From 827cb819183e4ca4ad36b651e8389f65b57da2bb Mon Sep 17 00:00:00 2001 From: "maruel@chromium.org" Date: Wed, 29 Aug 2012 18:00:17 +0000 Subject: [PATCH] Due to a temporary bug in the try server, ignore '=' as an email address. This CL shall be reverted once the try server is fixed. R=rogerta@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/10900029 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@153916 0039d316-1c4b-4281-b951-d872f2087c98 --- apply_issue.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apply_issue.py b/apply_issue.py index 6784ce535..655ecb6ee 100755 --- a/apply_issue.py +++ b/apply_issue.py @@ -52,6 +52,10 @@ def main(): if not options.issue: parser.error('Require --issue') + # TODO(rogerta): Remove me, it's ugly. + if options.email == '=': + options.email = '' + obj = rietveld.Rietveld(options.server, options.email, None) if not options.patchset: