diff options
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/create-jobs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/create-jobs.py b/utils/create-jobs.py index e9701a5..f3415a1 100755 --- a/utils/create-jobs.py +++ b/utils/create-jobs.py @@ -50,8 +50,8 @@ def parse_cmdline(machines, tests, rfs_types): args = parser.parse_args() - if (bool(args.callback_from) ^ bool(args.callback_to)): - parser.error("To specify callbacks both '--callback-to' and '--callback-from' are mandatory.") + if args.callback_to and not args.callback_from: + parser.error("When using '--callback-to', '--callback-from' is mandatory.") if (args.url == 'release'): if (args.url_branch is None) and (args.url_version is None): |