diff options
author | Daniel Duong <dduong42@users.noreply.github.com> | 2014-10-27 10:59:32 +0100 |
---|---|---|
committer | Daniel Duong <dduong42@users.noreply.github.com> | 2014-10-27 10:59:32 +0100 |
commit | b68930f32355579d46eadc590e05b0dae9237a2c (patch) | |
tree | 13b26a23f91855b91a741333d9d9ffe3b016a5f1 | |
parent | 80dd46d41a389ba4a166d5414034de27ad7e53da (diff) | |
download | django-wkhtmltopdf-b68930f32355579d46eadc590e05b0dae9237a2c.tar.gz django-wkhtmltopdf-b68930f32355579d46eadc590e05b0dae9237a2c.tar.bz2 django-wkhtmltopdf-b68930f32355579d46eadc590e05b0dae9237a2c.zip |
Change the wkhtmltopdf url
-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 e34085d..603d29a 100644 --- a/wkhtmltopdf/utils.py +++ b/wkhtmltopdf/utils.py @@ -34,7 +34,7 @@ def _options_to_args(**options): def wkhtmltopdf(pages, output=None, **kwargs): """ - Converts html to PDF using http://code.google.com/p/wkhtmltopdf/. + Converts html to PDF using http://wkhtmltopdf.org/. pages: List of file paths or URLs of the html to be converted. output: Optional output file path. If None, the output is returned. |