mirror of https://github.com/zulip/zulip.git
pep8: fix E202 violations
This commit is contained in:
parent
991c84fa1e
commit
7e14fe65ab
|
@ -82,7 +82,7 @@ def check_pep8(files):
|
||||||
# type: (List[str]) -> bool
|
# type: (List[str]) -> bool
|
||||||
failed = False
|
failed = False
|
||||||
ignored_rules = [
|
ignored_rules = [
|
||||||
'E402', 'E501', 'W503', 'E711', 'E201', 'E202', 'E128', 'E226',
|
'E402', 'E501', 'W503', 'E711', 'E201', 'E128', 'E226',
|
||||||
'E126', 'E121', 'E122', 'E123', 'E266', 'E265', 'E261', 'E221', 'E303',
|
'E126', 'E121', 'E122', 'E123', 'E266', 'E265', 'E261', 'E221', 'E303',
|
||||||
'E241', 'E712', 'E702', 'E401', 'E115', 'E114', 'E731', 'E302', 'E129',
|
'E241', 'E712', 'E702', 'E401', 'E115', 'E114', 'E731', 'E302', 'E129',
|
||||||
'E741', 'E714', 'W391', 'E713', 'E502', 'E131', 'E305', 'E251', 'E306',
|
'E741', 'E714', 'W391', 'E713', 'E502', 'E131', 'E305', 'E251', 'E306',
|
||||||
|
|
|
@ -64,7 +64,7 @@ def zulip_browser_error(report):
|
||||||
|
|
||||||
body = "User: %s\n" % (user_info,)
|
body = "User: %s\n" % (user_info,)
|
||||||
body += ("Message: %(message)s\n"
|
body += ("Message: %(message)s\n"
|
||||||
% report )
|
% (report))
|
||||||
|
|
||||||
internal_send_message(settings.ERROR_BOT,
|
internal_send_message(settings.ERROR_BOT,
|
||||||
"stream", "errors", format_subject(subject), body)
|
"stream", "errors", format_subject(subject), body)
|
||||||
|
|
Loading…
Reference in New Issue