aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf/tests/run.py
diff options
context:
space:
mode:
authorJonathan Liuti <liuti.john@gmail.com>2016-03-04 09:51:15 +0100
committerJonathan Liuti <liuti.john@gmail.com>2016-03-04 09:51:15 +0100
commit7024713a768d5180ff4a831598cdc8ed47a5476c (patch)
treeb2c6b8cec8b733ede94365eeb52d86e8b2decf3b /wkhtmltopdf/tests/run.py
parent44496fc3c418a94103bcd2da259f85f245778a15 (diff)
parent87b4aad9e9a88fafbf77dffd9694d613e721add6 (diff)
downloaddjango-wkhtmltopdf-7024713a768d5180ff4a831598cdc8ed47a5476c.tar.gz
django-wkhtmltopdf-7024713a768d5180ff4a831598cdc8ed47a5476c.tar.bz2
django-wkhtmltopdf-7024713a768d5180ff4a831598cdc8ed47a5476c.zip
Merge pull request #104 from halfnibble/master
Refactor to better support multiple pages.
Diffstat (limited to 'wkhtmltopdf/tests/run.py')
-rw-r--r--wkhtmltopdf/tests/run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wkhtmltopdf/tests/run.py b/wkhtmltopdf/tests/run.py
index 5004ee1..e0021ab 100644
--- a/wkhtmltopdf/tests/run.py
+++ b/wkhtmltopdf/tests/run.py
@@ -10,7 +10,7 @@ DIRNAME = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, os.getcwd())
settings.configure(
- DEBUG=True,
+ DEBUG=False,
DATABASES={
'default': {
'ENGINE': 'django.db.backends.sqlite3',
@@ -29,7 +29,7 @@ settings.configure(
MEDIA_URL='/media/',
STATIC_ROOT=os.path.join(DIRNAME, 'static'),
STATIC_URL='/static/',
- WKHTMLTOPDF_DEBUG=True,
+ WKHTMLTOPDF_DEBUG=False,
)
try: