summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2020-08-15 02:47:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-08-15 03:08:48 +0000
commitecd1e0b022a68110ada6517f84ffd91ea8a91bca (patch)
tree3f6b307c30a6856802f8524e3e81a88c10d78901
parent233de0105830c2c35f5532f4e3c1122c174557ec (diff)
downloadmongo-ecd1e0b022a68110ada6517f84ffd91ea8a91bca.tar.gz
SERVER-48638 added missing quote to error message
-rw-r--r--site_scons/libdeps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/site_scons/libdeps.py b/site_scons/libdeps.py
index d4c6985ab4c..3d297dff1c0 100644
--- a/site_scons/libdeps.py
+++ b/site_scons/libdeps.py
@@ -239,7 +239,7 @@ class LibdepLinter(object):
lib = os.path.basename(str(libdep))
self._raise_libdep_lint_exception(
textwrap.dedent(f"""\
- Program '{self.target[0]}' links non-public library '{lib}
+ Program '{self.target[0]}' links non-public library '{lib}'
A 'Program' can only have {Constants.Libdeps} libs,
not {Constants.LibdepsPrivate} or {Constants.LibdepsInterface}."""
))