summaryrefslogtreecommitdiff
path: root/buildscripts/validate_mongocryptd.py
diff options
context:
space:
mode:
authorMathew Robinson <chasinglogic@gmail.com>2019-02-19 10:50:57 -0500
committerMathew Robinson <chasinglogic@gmail.com>2019-04-08 14:08:49 -0400
commit8dd6d4755734ed37c1b98dfdefce3ca6bc65f1f6 (patch)
tree69e936c4953cbead2e3bae2690157c5fe75e709d /buildscripts/validate_mongocryptd.py
parentc600aa9d7423eca8151daf626e2799d9a6c7b31c (diff)
downloadmongo-8dd6d4755734ed37c1b98dfdefce3ca6bc65f1f6.tar.gz
SERVER-32295 Support Python 3
Diffstat (limited to 'buildscripts/validate_mongocryptd.py')
-rw-r--r--buildscripts/validate_mongocryptd.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/buildscripts/validate_mongocryptd.py b/buildscripts/validate_mongocryptd.py
index 1c334bcb1d1..2b8ba49c8b9 100644
--- a/buildscripts/validate_mongocryptd.py
+++ b/buildscripts/validate_mongocryptd.py
@@ -66,8 +66,9 @@ def main():
if not args.variant in expected_variants:
print("ERROR: Expected to find variant %s in list %s" % (args.variant, expected_variants),
file=sys.stderr)
- print("ERROR: Please add the build variant %s to the %s list in '%s'" %
- (args.variant, MONGOCRYPTD_VARIANTS, args.file), file=sys.stderr)
+ print(
+ "ERROR: Please add the build variant %s to the %s list in '%s'" %
+ (args.variant, MONGOCRYPTD_VARIANTS, args.file), file=sys.stderr)
sys.exit(1)
sys.exit(0)