Skip to content

Commit

Permalink
program output to stdout instead stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
leventyalcin committed Nov 2, 2024
1 parent db3983b commit 265c63b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions little_timmy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def main():
print(output, file=sys.stdout)
else:
for var_name, var_locations in all_declared_vars.items():
LOGGER.info(f"""{var_name} at {[os.path.relpath(
x, directory) for x in var_locations]}\n""")
print(f"""{var_name} at {[os.path.relpath(
x, directory) for x in var_locations]}\n""", file=sys.stdout)

if args.github_action:
level = "warning" if args.exit_success else "error"
Expand Down

0 comments on commit 265c63b

Please sign in to comment.