Fix conditional check

This commit is contained in:
Jorge-Rodriguez 2021-03-30 12:43:34 +03:00
parent b01a740b76
commit 78cd001194
No known key found for this signature in database
GPG key ID: 43153D1EFD8F7D90

View file

@ -1175,7 +1175,7 @@ def main():
if priv and isinstance(priv, dict):
priv = convert_priv_dict_to_str(priv)
if "REQUIRESSL" in priv:
if priv and "REQUIRESSL" in priv:
priv, tls_requires = handle_requiressl_in_priv_string(module, priv, tls_requires)
if mysql_driver is None: