From 934b2677c8e2fdfb05ff764e5ff85b18ea28e491 Mon Sep 17 00:00:00 2001 From: Sagar Vora Date: Wed, 3 May 2023 13:52:01 +0530 Subject: [PATCH] chore: fix typo (#1448) --- bench/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/app.py b/bench/app.py index 72f4825a..797ec400 100755 --- a/bench/app.py +++ b/bench/app.py @@ -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)