From 5c09b24e1928eaeeb99abfa3639894178bb124e5 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Fri, 13 Nov 2015 09:00:54 -0800 Subject: [PATCH] Fixed docstring --- letsencrypt/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index fa743a770..30ac81092 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -569,10 +569,10 @@ def plugins_cmd(args, config, plugins): # TODO: Use IDisplay rather than print def read_file(filename, mode="rb"): """Returns the given file's contents. - :param str filename: filename as an absolute path + :param str filename: path to file :param str mode: open mode (see `open`) - :returns: A tuple of filename and its contents + :returns: absolute path of filename and its contents :rtype: tuple :raises argparse.ArgumentTypeError: File does not exist or is not readable.