diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-07-17 00:00:35 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-17 10:32:19 +0200 |
commit | 932ef2dc6d22ae739e689cc7cc2330af8a122152 (patch) | |
tree | ae87c861052d1042e08376664e8a566a69942b85 | |
parent | 2b8a459b2d5a1f953cd77217ffe8c03adb037248 (diff) | |
download | jenkins.debian.net-932ef2dc6d22ae739e689cc7cc2330af8a122152.tar.xz |
reproducible: rescheduler: improve help text
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 0d202191..9658de3d 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -14,9 +14,12 @@ import argparse parser = argparse.ArgumentParser( description='Reschedule packages to re-test their reproducibility', - epilog='The build results will be announced on the #debian-reproducible' + - ' IRC channel if -n is provided.\nSpecifying both -r and -i ' + - 'means "all packages with that issue AND that status"') + epilog='The build results will be announced on the #debian-reproducible' + ' IRC channel if -n is provided. Specifying two or more filters' + ' (namely two or more -r/-i/-t/-b) means "all packages with that' + ' issue AND that status AND that date". Blacklisted package ' + "can't be selected by a filter, but needs to be explitely listed" + 'in the package list.') group = parser.add_mutually_exclusive_group() parser.add_argument('--dry-run', action='store_true') group.add_argument('-a', '--artifacts', default=False, action='store_true', |