diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 5eff003f..2baa22b7 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -116,7 +116,7 @@ def parse_args(): local = False # Shorter names - suites = [x.strip() for x in (scheduling_args.suite or "").split(', \t')] + suites = [x.strip() for x in re.compile(r'[, \t]').split(scheduling_args.suite or "")] suites = [x for x in suites if x] arch = scheduling_args.architecture reason = scheduling_args.message |