mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
zerver/forms.py: Fix line with length greater than 120.
This commit is contained in:
committed by
Tim Abbott
parent
9f3f82d06d
commit
37ea785b8f
@@ -37,7 +37,8 @@ MIT_VALIDATION_ERROR = u'That user does not exist at MIT or is a ' + \
|
||||
def get_registration_string(domain):
|
||||
# type: (text_type) -> text_type
|
||||
register_url = reverse('register') + domain
|
||||
register_account_string = _('The organization with the domain already exists. Please register your account <a href=%(url)s>here</a>.') % {'url': register_url}
|
||||
register_account_string = _('The organization with the domain already exists. '
|
||||
'Please register your account <a href=%(url)s>here</a>.') % {'url': register_url}
|
||||
return register_account_string
|
||||
|
||||
def has_valid_realm(value):
|
||||
|
||||
Reference in New Issue
Block a user