Axerdan
Results
1
comments of
Axerdan
You can resolve MEDIA_URL url using a simple os.path.join. https://github.com/incuna/django-wkhtmltopdf/pull/126/commits/9cdb5731017f24d119d8403c0b220f42412bd348#diff-36b0c981b229128ec810acc97c68d8feR247 This row should be something like this (not tested): if occur.startswith(settings.STATIC_URL): pathname = finders.find(filename, all=False) else: pathname = os.path.join(settings.MEDIA_ROOT, filename)...