Skip to content

Commit c1cb502

Browse files
committed
ensure no leading/trailing whitespace is included in specified repo(s)
1 parent 5b7c0fd commit c1cb502

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

enable_workflows.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def setup():
5050
args.dryrun = ""
5151
if not args.repos:
5252
raise ap.error("at least one (1) REPOSITORY must be specified")
53+
for i, repo in enumerate(args.repos):
54+
args.repos[i] = repo.strip()
5355
return args
5456

5557

0 commit comments

Comments
 (0)