From 784f58a27c6e010b87ff568fc8c0719e52c037a2 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 10 Nov 2016 16:14:41 +0530 Subject: [PATCH 1/2] Update disabled_print_settings_for_custom_print_format.py --- .../v7_1/disabled_print_settings_for_custom_print_format.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/patches/v7_1/disabled_print_settings_for_custom_print_format.py b/frappe/patches/v7_1/disabled_print_settings_for_custom_print_format.py index f42209a33a..45797c8c8f 100644 --- a/frappe/patches/v7_1/disabled_print_settings_for_custom_print_format.py +++ b/frappe/patches/v7_1/disabled_print_settings_for_custom_print_format.py @@ -6,6 +6,7 @@ from __future__ import unicode_literals import frappe def execute(): + frappe.reload_doctype('Print Format') frappe.db.sql(""" update `tabPrint Format` @@ -13,4 +14,4 @@ def execute(): align_labels_left = 0, line_breaks = 0, show_section_headings = 0 where custom_format = 1 - """) \ No newline at end of file + """) From 837e3b75d001a0a2b083f8e2d7181d2f6d12dab1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 10 Nov 2016 16:45:48 +0600 Subject: [PATCH 2/2] bumped to version 7.1.10 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 8e432c8b8c..990af664e4 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.1.9' +__version__ = '7.1.10' __title__ = "Frappe Framework" local = Local()