smtp returner does not require gnupg to be installed

This commit is contained in:
Arthur Vuillard 2017-01-25 14:55:02 +01:00
parent 5ff5e97598
commit 27449c5a9b

View file

@ -132,9 +132,7 @@ __virtualname__ = 'smtp'
def __virtual__():
if HAS_GNUPG:
return __virtualname__
return False, 'Could not import smtp returner; gnupg is not installed.'
return __virtualname__
def _get_options(ret=None):