From 226b5582e28490bc657e15cc4dce66f974857085 Mon Sep 17 00:00:00 2001 From: houssine Date: Fri, 2 Feb 2018 14:56:25 +0100 Subject: [PATCH] [TYPO] fix typo in error message --- easy_my_coop/controllers/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easy_my_coop/controllers/main.py b/easy_my_coop/controllers/main.py index 0588370..9cf7c32 100644 --- a/easy_my_coop/controllers/main.py +++ b/easy_my_coop/controllers/main.py @@ -228,7 +228,7 @@ class WebsiteSubscription(http.Controller): if max_amount > 0 and total_amount > max_amount: values = self.fill_values(values,is_company) - values["error_msg"] = "You can't suscribe for an amount that exceed " + str(max_amount) + company.currency_id.symbol + values["error_msg"] = "You can't subscribe for an amount that exceed " + str(max_amount) + company.currency_id.symbol return request.website.render("easy_my_coop.becomecooperator", values) if is_company: