Skip to content

Commit

Permalink
Fix inappropriate use of stdout. Fixes: nasa/fprime#2630 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Mar 28, 2024
1 parent b1c4815 commit c15253c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fprime/fbuild/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"""
import configparser
import os
import sys
from enum import Enum
from functools import partial
from pathlib import Path
Expand Down Expand Up @@ -172,7 +173,7 @@ def load(settings_file: Path, platform: str = "native", is_ut: bool = False):
confparse = configparser.ConfigParser()
confparse.read(settings_file)
else:
print(f"[WARNING] {settings_file} does not exist")
print(f"[WARNING] {settings_file} does not exist", file=sys.stderr)

settings = {
"settings_file": settings_file,
Expand Down

0 comments on commit c15253c

Please sign in to comment.