Fix options in push-to-trunk script.
authormachenbach@chromium.org <machenbach@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 20 Feb 2014 08:06:11 +0000 (08:06 +0000)
committermachenbach@chromium.org <machenbach@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Thu, 20 Feb 2014 08:06:11 +0000 (08:06 +0000)
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

index c1b52e6..24d9b77 100755 (executable)
@@ -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."