zerver/forms.py: Fix line with length greater than 120.

This commit is contained in:
Taranjeet Singh
2016-07-17 23:41:23 +05:30
committed by Tim Abbott
parent 9f3f82d06d
commit 37ea785b8f

View File

@@ -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):