From 7d7bbc3b530f11eec8fa347d330c16006390cd65 Mon Sep 17 00:00:00 2001 From: Andrii Shyshkalov Date: Mon, 15 Oct 2018 19:26:26 +0000 Subject: [PATCH] git cl upload: delete no longer supported flags. --email --emulate-svn-auto-props R=ehmaldonado Bug: 770408 Change-Id: I645342e5735313055c713bc8f8b68eee353aba49 Reviewed-on: https://chromium-review.googlesource.com/c/1279134 Commit-Queue: Andrii Shyshkalov Reviewed-by: Edward Lesmes --- git_cl.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/git_cl.py b/git_cl.py index 584e7cac71..9aa1b77bc6 100755 --- a/git_cl.py +++ b/git_cl.py @@ -4984,11 +4984,6 @@ def CMDupload(parser, args): 'can be applied multiple times')) parser.add_option('-s', '--send-mail', action='store_true', help='send email to reviewer(s) and cc(s) immediately') - parser.add_option('--emulate_svn_auto_props', - '--emulate-svn-auto-props', - action="store_true", - dest="emulate_svn_auto_props", - help="Emulate Subversion's auto properties feature.") parser.add_option('-c', '--use-commit-queue', action='store_true', help='tell the commit queue to commit this patchset; ' 'implies --send-mail') @@ -5027,10 +5022,6 @@ def CMDupload(parser, args): parser.add_option('--private', action='store_true', help='Set the review private. This implies --no-autocc.') - # TODO: remove Rietveld flags - parser.add_option('--email', default=None, - help='email address to use to connect to Rietveld') - orig_args = args auth.add_auth_options(parser) _add_codereview_select_options(parser)