Index: scripts/master/try_job_base.py |
=================================================================== |
--- scripts/master/try_job_base.py (revision 247974) |
+++ scripts/master/try_job_base.py (working copy) |
@@ -128,7 +128,10 @@ |
flatten(options, 'root', None) |
try_int(options, 'patchlevel', 0) |
flatten(options, 'branch', None) |
+ |
flatten(options, 'revision', None) |
+ options.setdefault('orig_revision', options['revision']) |
+ |
flatten(options, 'reason', '%s: %s' % (options['user'], options['name'])) |
try_bool(options, 'clobber', False) |
@@ -206,6 +209,7 @@ |
keys = ( |
'clobber', |
'issue', |
+ 'orig_revision', |
'patch_url', |
'patchset', |
'requester', |