From 5c6ffd2b2ab7bc566d45ee5caa5094bd01bcd2bf Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Wed, 15 Sep 2021 16:12:23 +0530 Subject: [PATCH] chore: Misc updates * Updated hooks content * Remove unnecessary multiple=True flag that breaks on click8 --- frappe/commands/site.py | 2 +- frappe/hooks.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 4480dc9920..1c997c99dd 100755 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -474,7 +474,7 @@ def remove_from_installed_apps(context, app): @click.command('uninstall-app') @click.argument('app') -@click.option('--yes', '-y', help='To bypass confirmation prompt for uninstalling the app', is_flag=True, default=False, multiple=True) +@click.option('--yes', '-y', help='To bypass confirmation prompt for uninstalling the app', is_flag=True, default=False) @click.option('--dry-run', help='List all doctypes that will be deleted', is_flag=True, default=False) @click.option('--no-backup', help='Do not backup the site', is_flag=True, default=False) @click.option('--force', help='Force remove app from site', is_flag=True, default=False) diff --git a/frappe/hooks.py b/frappe/hooks.py index 3cfdebc12e..2ae5a59066 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -12,11 +12,11 @@ source_link = "https://github.com/frappe/frappe" app_license = "MIT" app_logo_url = '/assets/frappe/images/frappe-framework-logo.svg' -develop_version = '13.x.x-develop' +develop_version = '14.x.x-develop' -app_email = "info@frappe.io" +app_email = "developers@frappe.io" -docs_app = "frappe_io" +docs_app = "frappe_docs" translator_url = "https://translate.erpnext.com"