Skip to content

Commit c4861f4

Browse files
committed
Fix allowed_prefixes parsing, again
1 parent 392036d commit c4861f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def parse_input(self) -> Options:
8686
ignore_branches = []
8787

8888
allowed_prefixes_raw: str = "" if args.allowed_prefixes is None else args.allowed_prefixes
89-
allowed_prefixes = args.allowed_prefixes_raw.split(',')
89+
allowed_prefixes = allowed_prefixes_raw.split(',')
9090
if allowed_prefixes == ['']:
9191
allowed_prefixes = []
9292

0 commit comments

Comments
 (0)