diff options
author | Charlie Denton <charlie@meshy.co.uk> | 2012-07-27 09:34:22 +0100 |
---|---|---|
committer | Charlie Denton <charlie@meshy.co.uk> | 2012-07-27 09:34:22 +0100 |
commit | 9fe6391baa20c87842dd8475b6d8732d0a34b24b (patch) | |
tree | 6d2d8027d2739ae195d5ef7b860c9b9c3562af92 /wkhtmltopdf/utils.py | |
parent | bf9e3288d78ffebc959c0a898c4c05c2db6a383d (diff) | |
download | django-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.tar.gz django-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.tar.bz2 django-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.zip |
Fix typo in docstring.
Diffstat (limited to 'wkhtmltopdf/utils.py')
-rw-r--r-- | wkhtmltopdf/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wkhtmltopdf/utils.py b/wkhtmltopdf/utils.py index 29e4ef6..69114b7 100644 --- a/wkhtmltopdf/utils.py +++ b/wkhtmltopdf/utils.py @@ -17,7 +17,7 @@ from .subprocess import check_output def _options_to_args(**options): - """Converts ``options`` into a string of command-line arguments.""" + """Converts ``options`` into a list of command-line arguments.""" flags = [] for name in sorted(options): value = options[name] |