Skip to content

Commit 00ba870

Browse files
authored
Fix output bug for workflows (#7)
1 parent f3c2f24 commit 00ba870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def exclude_languages(language_list):
4444
def set_action_output(output_name, value) :
4545
if "GITHUB_OUTPUT" in os.environ :
4646
with open(os.environ["GITHUB_OUTPUT"], "a") as f :
47-
print("Detected languages: {0}={1}".format(output_name, value), file=f)
47+
print("{0}={1}".format(output_name, value), file=f)
4848

4949
def main():
5050
languages = get_languages()

0 commit comments

Comments
 (0)