Skip to content

Commit

Permalink
debug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry-Antipov committed Aug 13, 2024
1 parent a5103d7 commit 5b399ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/scaffolding/scaffold_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def generateScaffolds(self):
while True:
next_path_id = self.findNextPath(cur_path_id, nor_used_path_ids, "weight")
if next_path_id == "NONE":
self.logger.info ("Failed to find regular extension for {next_path_id}, trying unique")
self.logger.info (f"Failed to find regular extension for {cur_path_id}, trying unique")
next_path_id = self.findNextPath(cur_path_id, nor_used_path_ids, "unique_weight")

if next_path_id == "DONE":
Expand Down

0 comments on commit 5b399ca

Please sign in to comment.