Skip to content

Commit

Permalink
autotest: correct diagnostic string
Browse files Browse the repository at this point in the history
that "f" in front of an f-string is important
  • Loading branch information
peterbarker committed Jan 2, 2025
1 parent e1fd90b commit 68aaaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/autotest/vehicle_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -5279,7 +5279,7 @@ def mission_item_protocol_items_from_filepath(self,
):
'''returns a list of mission-item-ints from filepath'''
# self.progress("filepath: %s" % filepath)
self.progress("Loading {loaderclass.itemstype()} (%s)" % os.path.basename(filepath))
self.progress(f"Loading {loaderclass.itemstype()} (%s)" % os.path.basename(filepath))
wploader = loaderclass(
target_system=target_system,
target_component=target_component
Expand Down

0 comments on commit 68aaaac

Please sign in to comment.