From d84238ce749dda831e822f88f03bb337574322b0 Mon Sep 17 00:00:00 2001 From: Rishi Gupta Date: Wed, 26 Jun 2019 14:09:20 -0700 Subject: [PATCH] ktlo: Contact org admin instead of server admin for wrong subdomain error. (#12543) Did a quick pass through the codebase; I think this is the only place we suggest contacting server admin instead of org admin for an issue like this. --- zerver/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/forms.py b/zerver/forms.py index 6aee3f61f6..62afcb7dcf 100644 --- a/zerver/forms.py +++ b/zerver/forms.py @@ -42,7 +42,7 @@ MIT_VALIDATION_ERROR = u'That user does not exist at MIT or is a ' + \ u'contact us.' WRONG_SUBDOMAIN_ERROR = "Your Zulip account is not a member of the " + \ "organization associated with this subdomain. " + \ - "Please contact %s with any questions!" % (FromAddress.SUPPORT,) + "Please contact your organization administrator with any questions." DEACTIVATED_ACCOUNT_ERROR = u"Your account is no longer active. " + \ u"Please contact your organization administrator to reactivate it."