summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index eb41dae76b9..96f5dda9704 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -679,7 +679,8 @@ def set_globals(options, tests):
global use_ssl
global file_of_commands_mode
start_mongod = options.start_mongod
- use_ssl = options.use_ssl
+ if hasattr(options, 'use_ssl'):
+ use_ssl = options.use_ssl
#Careful, this can be called multiple times
test_path = options.test_path