Skip to content

Commit

Permalink
ran the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkroorda committed Nov 30, 2021
1 parent b841edb commit 7d07cf6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions programs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ def _duration():


def caption(level, heading, good=None, newLine=True, continuation=False):
channel = sys.stdout if good is None or good else sys.stderr
prefix = "" if good is None else "SUCCES " if good else "FAILURE "
duration = "" if continuation else "{:>11} ".format(_duration())
reportHeading = "{}{}{}".format(duration, prefix, heading)
Expand Down Expand Up @@ -176,9 +177,10 @@ def caption(level, heading, good=None, newLine=True, continuation=False):
"." * 90,
)
if newLine:
print(formattedString)
channel.write(formattedString + "\n")
else:
sys.stdout.write(formattedString)
channel.write(formattedString)
channel.flush()


def mustRun(fileIn, fileOut, force=False):
Expand Down
2 changes: 1 addition & 1 deletion tf/2021/crossref.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@source=Parallels Module
@valueType=int
@writtenBy=Text-Fabric
@dateWritten=2021-08-24T11:17:16Z
@dateWritten=2021-11-30T15:36:19Z

1414401 1414407 84
1414401 1414411 89
Expand Down
2 changes: 1 addition & 1 deletion tf/2021/crossrefLCS.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@source=Parallels Module
@valueType=int
@writtenBy=Text-Fabric
@dateWritten=2021-08-24T11:17:16Z
@dateWritten=2021-11-30T15:36:19Z

1414401 1414407 84
1414401 1414411 89
Expand Down
2 changes: 1 addition & 1 deletion tf/2021/crossrefSET.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@source=Parallels Module
@valueType=int
@writtenBy=Text-Fabric
@dateWritten=2021-08-24T11:17:16Z
@dateWritten=2021-11-30T15:36:19Z

1414505 1414623 80
1414510 1414513 77
Expand Down

0 comments on commit 7d07cf6

Please sign in to comment.