From: W. Trevor King Date: Sat, 20 Oct 2012 18:52:04 +0000 (-0400) Subject: crypt: fix get_smtp_params -> get_client_params in doctest. X-Git-Url: http://git.tremily.us/?p=pgp-mime.git;a=commitdiff_plain;h=0f970a3dd391d2f42546901b26fec4dd2bd62fa6 crypt: fix get_smtp_params -> get_client_params in doctest. --- diff --git a/pgp_mime/crypt.py b/pgp_mime/crypt.py index 4987abf..789a642 100644 --- a/pgp_mime/crypt.py +++ b/pgp_mime/crypt.py @@ -42,7 +42,7 @@ def get_client_params(config): >>> get_client_params(config) {'socket_path': '/tmp/S.gpgme-tool'} >>> config = ConfigParser() - >>> get_smtp_params(ConfigParser()) + >>> get_client_params(ConfigParser()) {'socket_path': None} """ params = {'socket_path': None}