Commit 827cb819 authored by maruel@chromium.org's avatar maruel@chromium.org

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
parent d7ca616c
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment