diff options
author | Charlie Denton <charleswdenton@gmail.com> | 2012-05-21 13:55:43 -0700 |
---|---|---|
committer | Charlie Denton <charleswdenton@gmail.com> | 2012-05-21 13:55:43 -0700 |
commit | a76af4820ce71e1b0fd0052f0cf39690a34b680c (patch) | |
tree | 32510453a5122cff28c43a7f5d9982dfeec70f47 /wkhtmltopdf/__init__.py | |
parent | 4867d6bd6484c6bc1a263e49c3b08f3cfa30ff1d (diff) | |
parent | 9fe90235c8fc41b2450fc585bbe57cfe92f69f7b (diff) | |
download | django-wkhtmltopdf-a76af4820ce71e1b0fd0052f0cf39690a34b680c.tar.gz django-wkhtmltopdf-a76af4820ce71e1b0fd0052f0cf39690a34b680c.tar.bz2 django-wkhtmltopdf-a76af4820ce71e1b0fd0052f0cf39690a34b680c.zip |
Merge pull request #6 from incuna/develop
Fix tmp_files & tidy up response object
Diffstat (limited to 'wkhtmltopdf/__init__.py')
-rw-r--r-- | wkhtmltopdf/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 6738053..39b1413 100644 --- a/wkhtmltopdf/__init__.py +++ b/wkhtmltopdf/__init__.py @@ -2,6 +2,6 @@ import os if 'DJANGO_SETTINGS_MODULE' in os.environ: from .utils import * -__version__ = (0, 2, 2) -def get_version(): - return '.'.join(map(str, __version__)) +__author__ = 'Incuna Ltd' +__version__ = '0.3' + |