mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 18:36:36 +00:00
Cleanup remaining usage of % comprehensions without explicit tuples.
This commit is contained in:
@@ -110,7 +110,7 @@ def handle_event(event):
|
||||
project_name = raw_props.get('name')
|
||||
project_repo_type = raw_props.get('scm_type')
|
||||
|
||||
url = make_url("projects/%s" % project_link)
|
||||
url = make_url("projects/%s" % (project_link,))
|
||||
scm = "of type %s" % (project_repo_type,) if project_repo_type else ""
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user