Skip to content

Commit

Permalink
round time. See #163
Browse files Browse the repository at this point in the history
  • Loading branch information
nsheff committed Aug 12, 2019
1 parent a16829e commit 0f81cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,7 @@ def stop_pipeline(self, status=COMPLETE_FLAG):
self.info("* " + "Elapsed time (this run)".rjust(30) + ": " +
elapsed_time_this_run)
self.info("* " + "Total elapsed time (all runs)".rjust(30) + ": " +
str(datetime.timedelta(seconds=self.get_elapsed_time())))
str(datetime.timedelta(seconds=round(self.get_elapsed_time()))))
self.info("* " + "Peak memory (this run)".rjust(30) + ": " +
str(round(self.peak_memory, 2)) + " GB")
# self.info("* " + "Total peak memory (all runs)".rjust(30) + ": " +
Expand Down

0 comments on commit 0f81cce

Please sign in to comment.