Skip to content

Commit

Permalink
Further cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vmcj committed Dec 7, 2024
1 parent c48b388 commit ba907c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/jobs/jsontogitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ def cleanHash(toHash):
return hashlib.sha224(toHash).hexdigest()

def sec_start(job,header):
print('section_start:{}:{}{}{}'.format(int(time.time()),cleanHash(job),'\r\033[0K',header))
print('section_start:\r\033[0K{}'.format(header))

def sec_end(job):
print('section_end:{}:{}'.format(int(time.time()),cleanHash(job)+'\r\033[0K'))
print('section_end\r\033[0K'))

with open(sys.argv[1],'r') as f:
data = json.load(f)
Expand Down

0 comments on commit ba907c4

Please sign in to comment.