Skip to content

Commit 19ba23e

Browse files
committed
reflect move in execute_wk
1 parent 0d20156 commit 19ba23e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydf/wkhtmltopdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def execute_wk(*args):
1515
this_dir = os.path.dirname(__file__)
1616
on_heroku = 'DYNO' in os.environ
1717
wk_name = 'wkhtmltopdf-heroku' if on_heroku else 'wkhtmltopdf'
18-
wkhtmltopdf_default = os.path.join(this_dir, '../bin/', wk_name)
18+
wkhtmltopdf_default = os.path.join(this_dir, 'bin', wk_name)
1919
# Reference command
2020
wkhtmltopdf_cmd = os.environ.get('WKHTMLTOPDF_CMD', wkhtmltopdf_default)
2121
if not os.path.isfile(wkhtmltopdf_cmd):

0 commit comments

Comments
 (0)