Skip to content

Commit

Permalink
Merge pull request #198 from vreuter/vr/stage-log-message-197
Browse files Browse the repository at this point in the history
Cleaner initial stage run message
  • Loading branch information
khoroshevskyi authored Nov 7, 2023
2 parents 39b6e99 + 0c9b16f commit 6914fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypiper/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def run(self, start_point=None, stop_before=None, stop_after=None):
# between results from different stages.
skip_mode = False

print("Running stage: {}".format(stage))
print(f"Running stage: {getattr(stage, "name", str(stage))}")

stage.run()
self.executed.append(stage)
Expand Down

0 comments on commit 6914fd5

Please sign in to comment.