Rename "next" to "following" in message

This commit is contained in:
Mikhail Gordeev 2020-06-19 19:27:12 +03:00
parent 68219cd6d5
commit 8c44c19428

View File

@ -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