2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-08 00:04:38 +00:00

chore: fix typo (#1448)

This commit is contained in:
Sagar Vora 2023-05-03 13:52:01 +05:30 committed by GitHub
parent fd6dfc3ae7
commit 934b2677c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -315,7 +315,7 @@ def get_excluded_apps(bench_path="."):
def add_to_excluded_apps_txt(app, bench_path="."):
if app == "frappe":
raise ValueError("Frappe app cannot be excludeed from update")
raise ValueError("Frappe app cannot be excluded from update")
if app not in os.listdir("apps"):
raise ValueError(f"The app {app} does not exist")
apps = get_excluded_apps(bench_path=bench_path)