Commit c0b84386 authored by Anand Doshi's avatar Anand Doshi
Browse files

Merge branch 'develop'

parents 54a1400f bb007240
Showing with 10 additions and 4 deletions
+10 -4
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = "6.17.1" __version__ = "6.17.2"
...@@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd." ...@@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node" app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node"
app_icon = "octicon octicon-circuit-board" app_icon = "octicon octicon-circuit-board"
app_version = "6.17.1" app_version = "6.17.2"
app_color = "orange" app_color = "orange"
source_link = "https://github.com/frappe/frappe" source_link = "https://github.com/frappe/frappe"
app_license = "MIT" app_license = "MIT"
......
...@@ -28,3 +28,5 @@ def execute(): ...@@ -28,3 +28,5 @@ def execute():
"name": name, "name": name,
"owner": owner "owner": owner
}) })
frappe.db.commit()
...@@ -2,7 +2,11 @@ ...@@ -2,7 +2,11 @@
{% block title %}{{ title }}{% endblock %} {% block title %}{{ title }}{% endblock %}
{% block header %}{{ header }}{% endblock %} {% block header %}
{% if header is defined -%}
<h1>{{ header }}</h1>
{%- endif %}
{% endblock %}
{% block page_content %} {% block page_content %}
<!-- no-sidebar --> <!-- no-sidebar -->
......
from setuptools import setup, find_packages from setuptools import setup, find_packages
from pip.req import parse_requirements from pip.req import parse_requirements
version = "6.17.1" version = "6.17.2"
requirements = parse_requirements("requirements.txt", session="") requirements = parse_requirements("requirements.txt", session="")
setup( setup(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment