Skip to content

Commit

Permalink
buildorder.py: strip on parse_build_file_excluded_arches
Browse files Browse the repository at this point in the history
  • Loading branch information
licy183 authored Apr 30, 2023
1 parent cfe692e commit 6089f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/buildorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def parse_build_file_excluded_arches(path):
for char in "\"'\n":
arches_string = arches_string.replace(char, '')
for arches_value in re.split(',', arches_string):
arches.append(arches_value)
arches.append(arches_value.strip())

return set(arches)

Expand Down

0 comments on commit 6089f25

Please sign in to comment.