jenkinsfile

This commit is contained in:
unknown 2020-04-03 14:21:54 +02:00
parent 79d4cd5bff
commit 954c40050e

View File

@ -9,6 +9,6 @@ with open("helper.txt", "r") as f:
elif re.match(r'^Scores: (#C #S #D #I).*', line):
helper = line.replace("Scores: (#C #S #D #I) ", "").split()
sum = helper[0] + helper[1] + helper[2] + helper[3]
wer.write(str((helper[0]/sum) * 100)"%\n")
wer.write(str((helper[0]/sum) * 100) + "%\n")
wer.close()