diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-16 22:03:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-16 22:03:59 +0200 |
commit | b54feba51cb2fdac0c5ce99ed0c49a48310a7963 (patch) | |
tree | cb08367bb307a5b85c63901dfad65d690abb90df /bin | |
parent | 4d5ce927222f275d2c3e4b23d1822e5b7050c60c (diff) | |
download | jenkins.debian.net-b54feba51cb2fdac0c5ce99ed0c49a48310a7963.tar.xz |
reproducible: swap order of arguments
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index cbcc7aa0..86f235b3 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -21,11 +21,11 @@ group.add_argument('-a', '--artifacts', default=False, action='store_true', help='Save artifacts (for further offline study)') group.add_argument('-n', '--no-notify', default=False, action='store_true', help='Do not notify the channel when the build finish') -parser.add_argument('-s', '--suite', required=True, - help='Specify the suite to schedule in') parser.add_argument('-m', '--message', default='', nargs='+', help='A text to be sent to the IRC channel when notifying' + ' about the scheduling') +parser.add_argument('-s', '--suite', required=True, + help='Specify the suite to schedule in') parser.add_argument('packages', metavar='package', nargs='+', help='list of packages to reschedule') scheduling_args = parser.parse_known_args()[0] |