Skip to content

Commit c9c95b9

Browse files
authored
Merge pull request #2428 from oljemark/typoesThree
Fix printout typoes
2 parents dfefc89 + 04ca6d7 commit c9c95b9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: es_relval_log.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def es_parse_jobreport(payload, logFile):
9191
def es_parse_log(logFile):
9292
stamp = "%s-es" % logFile
9393
if exists(stamp):
94-
print("Adready process: ", logFile)
94+
print("Already processed: ", logFile)
9595
return
9696
t = os.path.getmtime(logFile)
9797
timestp = int(t * 1000)

Diff for: generate-class-version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ for pkg in $(cat packages.txt | sed 's|.*=||' | sort | uniq) ; do
7878
done
7979
wait
8080

81-
echo "Done runnin edmDumpClassVersion"
81+
echo "Done running edmDumpClassVersion"
8282
echo "Processing logs ..."
8383

8484
echo "<html><head></head><body><pre>" > class_versions.html

Diff for: jenkins/parser/actions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def trigger_retry_action(
112112

113113

114114
def trigger_nodeoff_action(job_to_retry, build_to_retry, job_url, node_name):
115-
nodeoff_msg = r"'Node\ marked\ as\ offline\ beacuse\ of\ " + job_url + "'"
115+
nodeoff_msg = r"'Node\ marked\ as\ offline\ because\ of\ " + job_url + "'"
116116
take_nodeoff = (
117117
os.environ.get("JENKINS_CLI_CMD") + " offline-node " + node_name + " -m " + nodeoff_msg
118118
)

Diff for: process_pr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2107,7 +2107,7 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F
21072107
if (signatures.get("tests") == "approved") and [c for c in signatures if not c in xcats]:
21082108
for cat in [c for c in CATS_TO_APPROVE_ON_TEST if (signatures.get(c) == "pending")]:
21092109
signatures[cat] = "approved"
2110-
print("Overriding/Approving singatures for %s due to tests-approved" % cat)
2110+
print("Overriding/Approving signatures for %s due to tests-approved" % cat)
21112111

21122112
for cat in signing_categories:
21132113
l = cat + "-pending"

Diff for: report-summary-merged-prs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ def find_general_test_results(
11361136
:param magic_command: string with bash command to execute
11371137
:param test_field: field to write back the results to
11381138
:param results_function: function how to process results
1139-
:param proces_result: function to process the result of results_function
1139+
:param process_result: function to process the result of results_function
11401140
"""
11411141

11421142
for comp in comparisons:

0 commit comments

Comments
 (0)