Skip to content

Commit 49ac84b

Browse files
authored
Fix typo in bcr_presubmit.py
1 parent 09c1523 commit 49ac84b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildkite/bazel-central-registry/bcr_presubmit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_target_modules():
7272
for line in output.decode("utf-8").split():
7373
s = re.match(r"modules\/([^\/]+)\/([^\/]+)\/", line)
7474
if s:
75-
modules.add(s.group())
75+
modules.add(s.groups())
7676

7777
return sorted(modules)
7878

0 commit comments

Comments
 (0)