From d0e377428a1a441a668936b92462f21f33f2cba0 Mon Sep 17 00:00:00 2001 From: Rishi Gupta Date: Fri, 10 Aug 2018 16:23:42 -0700 Subject: [PATCH] billing: Fix typo in CONTACT_SUPPORT error message. --- zilencer/lib/stripe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zilencer/lib/stripe.py b/zilencer/lib/stripe.py index d0ee8d9f0d..070b93bb27 100644 --- a/zilencer/lib/stripe.py +++ b/zilencer/lib/stripe.py @@ -65,7 +65,7 @@ def unsign_string(signed_string: str, salt: str) -> str: class BillingError(Exception): # error messages - CONTACT_SUPPORT = _("Something went wrong. Please contact %s)" % (settings.ZULIP_ADMINISTRATOR,)) + CONTACT_SUPPORT = _("Something went wrong. Please contact %s." % (settings.ZULIP_ADMINISTRATOR,)) TRY_RELOADING = _("Something went wrong. Please reload the page.") # description is used only for tests