Cleanup remaining usage of % comprehensions without explicit tuples.

This commit is contained in:
Tim Abbott 2015-12-01 08:11:16 -08:00
parent e4f85d2462
commit 1cfb0ee407

View file

@ -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 ""