Skip to content

Commit

Permalink
Turn fstring into reg string as no replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibFrgsGmz committed Apr 29, 2022
1 parent 3c8a61c commit a745ea4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/fprime/fbuild/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def add_target_parser(
"--pass-through",
nargs=argparse.REMAINDER,
default=[],
help=f"If specified, --pass-through must be the last argument. Remaining arguments passed to underlying executable",
help="If specified, --pass-through must be the last argument. Remaining arguments passed to underlying executable",
)
flags.append("--pass-through")
flags.extend(new_flags)
Expand Down
4 changes: 2 additions & 2 deletions src/fprime/fbuild/gcovr.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def execute(
print(f"[INFO] Making temporary directory: {temp_path}")
temp_path.mkdir(exist_ok=False)
atexit.register(self.removal, temp_path)
print(f"[INFO] Copying AC files into temporary directory")
print("[INFO] Copying AC files into temporary directory")
cache_path = builder.build_dir / builder.get_relative_path(
context, to_build_cache=True
)
Expand Down Expand Up @@ -232,7 +232,7 @@ def execute(
)
return
ac_temporary_path = _get_ac_directory(builder, context, self.scope)
coverage_output_dir = context / f"coverage"
coverage_output_dir = context / "coverage"
coverage_output_dir.mkdir(exist_ok=True)
project_root = builder.get_settings(
"project_root",
Expand Down
2 changes: 1 addition & 1 deletion src/fprime/util/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def print_info(

# Print out directory and deployment target sections
if local_generic_targets.keys() or global_generic_targets.keys():
print(f"[INFO] fprime build information:")
print("[INFO] fprime build information:")
print(
f" Available directory targets: {' '.join(local_generic_targets.keys())}"
)
Expand Down

0 comments on commit a745ea4

Please sign in to comment.