From 8c44c1942875e06e70ce5bb9a4399115c8c2277b Mon Sep 17 00:00:00 2001 From: Mikhail Gordeev Date: Fri, 19 Jun 2020 19:27:12 +0300 Subject: [PATCH] Rename "next" to "following" in message --- cloud_build/cloud_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud_build/cloud_build.py b/cloud_build/cloud_build.py index 4d4f1dd..eb6ae38 100755 --- a/cloud_build/cloud_build.py +++ b/cloud_build/cloud_build.py @@ -40,7 +40,7 @@ class MultipleBuildErrors(Error): self.build_errors = build_errors def __str__(self): - s = 'Fail building of the next targets:\n' + s = 'Fail building of the following targets:\n' s += '\n'.join(f' {be.target} {be.arch}' for be in self.build_errors) return s