Skip to content

Commit

Permalink
webapp: fix bug for project count
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski committed Jan 20, 2025
1 parent 3b75c81 commit 7de5231
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,7 @@ def extract_must_includes(must_include_arg):
for filename in os.listdir(must_include_arg):
if filename.endswith(".yaml"):
must_include.add(filename.replace(".yaml", ""))
else:
elif must_include_arg:
for elem in must_include_arg.split(","):
must_include.add(elem.strip())
return must_include
Expand Down

0 comments on commit 7de5231

Please sign in to comment.