diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2020-08-15 02:47:16 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-08-15 03:08:48 +0000 |
commit | ecd1e0b022a68110ada6517f84ffd91ea8a91bca (patch) | |
tree | 3f6b307c30a6856802f8524e3e81a88c10d78901 /site_scons | |
parent | 233de0105830c2c35f5532f4e3c1122c174557ec (diff) | |
download | mongo-ecd1e0b022a68110ada6517f84ffd91ea8a91bca.tar.gz |
SERVER-48638 added missing quote to error message
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/libdeps.py | 2 |
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}.""" )) |