summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_remote_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-16 22:03:59 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-16 22:03:59 +0200
commitb54feba51cb2fdac0c5ce99ed0c49a48310a7963 (patch)
treecb08367bb307a5b85c63901dfad65d690abb90df /bin/reproducible_remote_scheduler.py
parent4d5ce927222f275d2c3e4b23d1822e5b7050c60c (diff)
downloadjenkins.debian.net-b54feba51cb2fdac0c5ce99ed0c49a48310a7963.tar.xz
reproducible: swap order of arguments
Diffstat (limited to 'bin/reproducible_remote_scheduler.py')
-rwxr-xr-xbin/reproducible_remote_scheduler.py4
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]