Skip to content

Commit

Permalink
Fix tab in mongo_connect
Browse files Browse the repository at this point in the history
There was a tab character throwing this off for me. Fixed with appropriate whitespace.
  • Loading branch information
hedenface authored Feb 17, 2017
1 parent 7248618 commit 5f34289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_mongodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def mongo_connect(host=None, port=None, ssl=False, user=None, passwd=None, repli
con_args['ssl_cert_reqs'] = SSL.CERT_REQUIRED
con_args['ssl'] = ssl
if ssl_cert:
con_args['ssl_certfile'] = ssl_cert
con_args['ssl_certfile'] = ssl_cert

try:
# ssl connection for pymongo > 2.3
Expand Down

0 comments on commit 5f34289

Please sign in to comment.