lint: Fix E127 pep8 violations.
Fix pep8: E127 continuation line over-indented for visual indent style issue.
This commit is contained in:
parent
bc9bb4287d
commit
fad4fbc733
|
@ -136,8 +136,8 @@ def handle_event(event):
|
||||||
else:
|
else:
|
||||||
if new_ref:
|
if new_ref:
|
||||||
branch = "new branch %s" % (branch,)
|
branch = "new branch %s" % (branch,)
|
||||||
content = "%s pushed %s commit(s) to %s in project %s:\n\n" % \
|
content = ("%s pushed %s commit(s) to %s in project %s:\n\n" %
|
||||||
(actor_name, num_commits, branch, project)
|
(actor_name, num_commits, branch, project))
|
||||||
for commit in raw_props.get('commits'):
|
for commit in raw_props.get('commits'):
|
||||||
ref = commit.get('ref')
|
ref = commit.get('ref')
|
||||||
url = make_url("projects/%s/repositories/%s/commit/%s" % (project_link, repo_link, ref))
|
url = make_url("projects/%s/repositories/%s/commit/%s" % (project_link, repo_link, ref))
|
||||||
|
@ -155,8 +155,8 @@ def handle_event(event):
|
||||||
if assignee is None:
|
if assignee is None:
|
||||||
assignee = "no one"
|
assignee = "no one"
|
||||||
subject = "#%s: %s" % (num, name)
|
subject = "#%s: %s" % (num, name)
|
||||||
content = """%s created a new ticket [#%s](%s) priority **%s** assigned to %s:\n\n~~~ quote\n %s""" % \
|
content = ("""%s created a new ticket [#%s](%s) priority **%s** assigned to %s:\n\n~~~ quote\n %s""" %
|
||||||
(actor_name, num, url, priority, assignee, name)
|
(actor_name, num, url, priority, assignee, name))
|
||||||
elif event_type == 'ticketing_note':
|
elif event_type == 'ticketing_note':
|
||||||
stream = config.ZULIP_TICKETS_STREAM_NAME
|
stream = config.ZULIP_TICKETS_STREAM_NAME
|
||||||
|
|
||||||
|
@ -229,8 +229,8 @@ def handle_event(event):
|
||||||
|
|
||||||
subject = "Deployment to %s" % (environment,)
|
subject = "Deployment to %s" % (environment,)
|
||||||
|
|
||||||
content = "%s deployed [%s](%s) [through](%s) [%s](%s) to the **%s** environment." % \
|
content = ("%s deployed [%s](%s) [through](%s) [%s](%s) to the **%s** environment." %
|
||||||
(actor_name, start_ref, start_ref_url, between_url, end_ref, end_ref_url, environment)
|
(actor_name, start_ref, start_ref_url, between_url, end_ref, end_ref_url, environment))
|
||||||
if servers is not None:
|
if servers is not None:
|
||||||
content += "\n\nServers deployed to: %s" % (", ".join(["`%s`" % (server,) for server in servers]))
|
content += "\n\nServers deployed to: %s" % (", ".join(["`%s`" % (server,) for server in servers]))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue