From 672bc20af85189d2a2df0a0dc299632db717a47d Mon Sep 17 00:00:00 2001 From: "machenbach@chromium.org" Date: Thu, 20 Feb 2014 08:06:11 +0000 Subject: [PATCH] Fix options in push-to-trunk script. BUG= TBR=ulan@chromium.org Review URL: https://codereview.chromium.org/173533002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19501 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/push-to-trunk/push_to_trunk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/push-to-trunk/push_to_trunk.py b/tools/push-to-trunk/push_to_trunk.py index c1b52e6..24d9b77 100755 --- a/tools/push-to-trunk/push_to_trunk.py +++ b/tools/push-to-trunk/push_to_trunk.py @@ -68,6 +68,7 @@ class PushToTrunkOptions(CommonOptions): options.f = True options.m = False options.c = chrome_path + options.reviewer = reviewer options.a = author return PushToTrunkOptions(options) @@ -82,6 +83,7 @@ class PushToTrunkOptions(CommonOptions): self.b = getattr(options, 'b', None) self.author = getattr(options, 'a', None) + class Preparation(Step): MESSAGE = "Preparation." -- 2.7.4