mirror of https://github.com/zulip/zulip.git
python: Fix string literal concatenation mistakes.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
a315579140
commit
9773c0f1a8
|
@ -23,7 +23,7 @@ class Command(BaseCommand):
|
|||
|
||||
def add_arguments(self, parser: ArgumentParser) -> None:
|
||||
parser.add_argument('--time', '-t',
|
||||
help='Update stat tables from current state to'
|
||||
help='Update stat tables from current state to '
|
||||
'--time. Defaults to the current time.',
|
||||
default=timezone_now().isoformat())
|
||||
parser.add_argument('--utc',
|
||||
|
|
|
@ -100,7 +100,7 @@ def is_slow_query(time_delta: float, path: str) -> bool:
|
|||
return True
|
||||
|
||||
statsd_blacklisted_requests = [
|
||||
'do_confirm', 'signup_send_confirm', 'new_realm_send_confirm,'
|
||||
'do_confirm', 'signup_send_confirm', 'new_realm_send_confirm',
|
||||
'eventslast_event_id', 'webreq.content', 'avatar', 'user_uploads',
|
||||
'password.reset', 'static', 'json.bots', 'json.users', 'json.streams',
|
||||
'accounts.unsubscribe', 'apple-touch-icon', 'emoji', 'json.bots',
|
||||
|
|
|
@ -25,7 +25,7 @@ DESC_TEMPLATE = """
|
|||
|
||||
SUPPORTED_CHECK_TYPES = (
|
||||
'HTTP',
|
||||
'HTTP_CUSTOM'
|
||||
'HTTP_CUSTOM',
|
||||
'HTTPS',
|
||||
'SMTP',
|
||||
'POP3',
|
||||
|
|
Loading…
Reference in New Issue