Skip to content

Commit

Permalink
fix-broken-string
Browse files Browse the repository at this point in the history
  • Loading branch information
boazhaim committed Sep 19, 2024
1 parent 7501a79 commit 9c82151
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ def create_analyzer(parsed_args, full_extracted_logs_list,

used_ufm_version = console_log_analyzer.ufm_versions
text_to_show_in_pdf = f"Used ufm version in console log {used_ufm_version}"
fabric_info = "fabric info:" + os.linesep + ibdiagnet_analyzer.get_fabric_size() \
if ibdiagnet_analyzer else "No Fabric Info found"
fabric_info = "fabric info:" + os.linesep + str(ibdiagnet_analyzer.get_fabric_size()) \
if ibdiagnet_analyzer else "No Fabric Info found" # pylint: disable=invalid-name
link_flapping = links_flapping_analyzer.get_link_flapping_last_week() \
if links_flapping_analyzer else "No link flapping info"
text_to_show_in_pdf += os.linesep + str(fabric_info) + os.linesep + \
Expand Down

0 comments on commit 9c82151

Please sign in to comment.