Explorar el Código

Merge branch 'develop'

version-14
Pratik Vyas hace 10 años
padre
commit
506e8850f8
Se han modificado 4 ficheros con 4 adiciones y 4 borrados
  1. +1
    -1
      frappe/__version__.py
  2. +1
    -1
      frappe/hooks.py
  3. +1
    -1
      frappe/widgets/query_report.py
  4. +1
    -1
      setup.py

+ 1
- 1
frappe/__version__.py Ver fichero

@@ -1 +1 @@
__version__ = "4.10.1"
__version__ = "4.10.2"

+ 1
- 1
frappe/hooks.py Ver fichero

@@ -3,7 +3,7 @@ app_title = "Frappe Framework"
app_publisher = "Web Notes Technologies Pvt. Ltd."
app_description = "Full Stack Web Application Framework in Python"
app_icon = "assets/frappe/images/frappe.svg"
app_version = "4.10.1"
app_version = "4.10.2"
app_color = "#3498db"
app_email = "support@frappe.io"



+ 1
- 1
frappe/widgets/query_report.py Ver fichero

@@ -69,7 +69,7 @@ def run(report_name, filters=()):
frappe.msgprint(_("Must have report permission to access this report."),
raise_exception=True)

columns, results = [], []
columns, result = [], []
if report.report_type=="Query Report":
if not report.query:
frappe.msgprint(_("Must specify a Query to run"), raise_exception=True)


+ 1
- 1
setup.py Ver fichero

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = "4.10.1"
version = "4.10.2"

with open("requirements.txt", "r") as f:
install_requires = f.readlines()


Cargando…
Cancelar
Guardar