aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf
diff options
context:
space:
mode:
authorCharlie Denton <charlie@meshy.co.uk>2012-07-27 09:34:22 +0100
committerCharlie Denton <charlie@meshy.co.uk>2012-07-27 09:34:22 +0100
commit9fe6391baa20c87842dd8475b6d8732d0a34b24b (patch)
tree6d2d8027d2739ae195d5ef7b860c9b9c3562af92 /wkhtmltopdf
parentbf9e3288d78ffebc959c0a898c4c05c2db6a383d (diff)
downloaddjango-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.tar.gz
django-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.tar.bz2
django-wkhtmltopdf-9fe6391baa20c87842dd8475b6d8732d0a34b24b.zip
Fix typo in docstring.
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r--wkhtmltopdf/utils.py2
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]