Skip to content

Commit c511c1c

Browse files
committed
Merge branch 'develop'
2 parents c067869 + 64f2595 commit c511c1c

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

frappe/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from __future__ import unicode_literals
2-
__version__ = "6.15.0"
2+
__version__ = "6.15.1"

frappe/desk/reportview.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,8 @@ def get_match_cond(doctype):
180180
return ((' and ' + cond) if cond else "").replace("%", "%%")
181181

182182
def build_match_conditions(doctype, as_condition=True):
183-
return (DatabaseQuery(doctype).build_match_conditions(as_condition=as_condition)).replace("%", "%%")
183+
match_conditions = DatabaseQuery(doctype).build_match_conditions(as_condition=as_condition)
184+
if as_condition:
185+
return match_conditions.replace("%", "%%")
186+
else:
187+
return match_conditions

frappe/hooks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node"
66

77
app_icon = "octicon octicon-circuit-board"
8-
app_version = "6.15.0"
8+
app_version = "6.15.1"
99
app_color = "orange"
1010
source_link = "https://github.com/frappe/frappe"
1111
app_license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
from pip.req import parse_requirements
33

4-
version = "6.15.0"
4+
version = "6.15.1"
55
requirements = parse_requirements("requirements.txt", session="")
66

77
setup(

0 commit comments

Comments
 (0)