Skip to content

Commit

Permalink
Merge pull request ericaltendorf#410 from rafaelsteil/status-date
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored May 16, 2021
2 parents 3f788e9 + 5bd13dc commit 5bff3dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/plotman/plotman.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import random
from shutil import copyfile
import time
import datetime

# Plotman libraries
from plotman import analyzer, archive, configuration, interactive, manager, plot_util, reporting
Expand Down Expand Up @@ -163,9 +164,10 @@ def main():

# Status report
if args.cmd == 'status':
result = "{0}\n\n{1}".format(
result = "{0}\n\n{1}\n\nUpdated at: {2}".format(
reporting.status_report(jobs, get_term_width()),
reporting.summary(jobs)
reporting.summary(jobs),
datetime.datetime.today().strftime("%c"),
)
print(result)

Expand Down

0 comments on commit 5bff3dd

Please sign in to comment.