| Index: tools/push-to-trunk/auto_roll.py
|
| diff --git a/tools/push-to-trunk/auto_roll.py b/tools/push-to-trunk/auto_roll.py
|
| index 8f26a49cb3ca9dcfd99f08080aa9f02aca72e4da..c7de2a7067554e1473baa2b996a6af67405c59a5 100755
|
| --- a/tools/push-to-trunk/auto_roll.py
|
| +++ b/tools/push-to-trunk/auto_roll.py
|
| @@ -38,6 +38,12 @@ CONFIG = {
|
| }
|
|
|
|
|
| +class AutoRollOptions(CommonOptions):
|
| + def __init__(self, options):
|
| + super(AutoRollOptions, self).__init__(options)
|
| + self.requires_editor = False
|
| +
|
| +
|
| class Preparation(Step):
|
| MESSAGE = "Preparation."
|
|
|
| @@ -137,7 +143,7 @@ def Main():
|
| print "You need to specify the chromium src location and a reviewer."
|
| parser.print_help()
|
| return 1
|
| - RunAutoRoll(CONFIG, options)
|
| + RunAutoRoll(CONFIG, AutoRollOptions(options))
|
|
|
| if __name__ == "__main__":
|
| sys.exit(Main())
|
|
|