Browse Source

chore: Misc updates

* Updated hooks content
* Remove unnecessary multiple=True flag that breaks on click8
version-14
Gavin D'souza 3 years ago
parent
commit
5c6ffd2b2a
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      frappe/commands/site.py
  2. +3
    -3
      frappe/hooks.py

+ 1
- 1
frappe/commands/site.py View File

@@ -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)


+ 3
- 3
frappe/hooks.py View File

@@ -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"



Loading…
Cancel
Save