From ea9c92daa5481d31dbfcf65c53bf754f8f978dff Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 30 Sep 2016 16:19:55 +0530 Subject: [PATCH 1/2] [hot] ignoring loading errors causes background images to not load --- frappe/utils/pdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/pdf.py b/frappe/utils/pdf.py index 3e3801006b..2cd778034f 100644 --- a/frappe/utils/pdf.py +++ b/frappe/utils/pdf.py @@ -51,7 +51,7 @@ def prepare_options(html, options): 'quiet': None, # 'no-outline': None, 'encoding': "UTF-8", - 'load-error-handling': 'ignore', + #'load-error-handling': 'ignore', # defaults 'margin-right': '15mm', From ecc3a7ebe22bbc17833584b42ba9ce3f5d466cad Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 30 Sep 2016 16:53:45 +0600 Subject: [PATCH 2/2] bumped to version 7.0.38 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index bc6a55a6d9..341bc93c10 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -13,7 +13,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template -__version__ = "7.0.37" +__version__ = "7.0.38" local = Local()