Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/rolling' into rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
masf7g committed Oct 2, 2024
2 parents 3e7b0c1 + ed44598 commit 978af80
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,12 @@ def check_set_camera_info(self, response):
for i in range(10):
print("!" * 80)
print()
print("Attempt to set camera info failed: " + response.status_message
if response.status_message is not None else "Not available")
print(f"Attempt to set camera info failed: {response.status_message}")
print()
for i in range(10):
print("!" * 80)
print()
self.get_logger().error('Unable to set camera info for calibration. Failure message: %s' %
response.status_message if response.status_message is not None else "Not available")
self.get_logger().error(f'Unable to set camera info for calibration. Failure message: {response.status_message}')
return False

def do_upload(self):
Expand Down

0 comments on commit 978af80

Please sign in to comment.