aboutsummaryrefslogtreecommitdiff
path: root/modules/git_webhooks/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-28 07:25:09 +0100
committerGravatar jesopo2019-06-28 07:25:09 +0100
commit4006184385fa6dd40d4880e7308b82c09673624e (patch)
treead73a46e27fd7bfbf55037b3bfabd2deda14c5bc /modules/git_webhooks/github.py
parentDEBUG log when we get a tweet from a stream (diff)
signature
remove dangling "," left over from moving code
Diffstat (limited to 'modules/git_webhooks/github.py')
-rw-r--r--modules/git_webhooks/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git_webhooks/github.py b/modules/git_webhooks/github.py
index 7e3db56b..2b9c66f7 100644
--- a/modules/git_webhooks/github.py
+++ b/modules/git_webhooks/github.py
@@ -191,7 +191,7 @@ class GitHub(object):
range_url = self._short_url(
COMMIT_RANGE_URL % (full_name, first_id, last_id))
- single_url = COMMIT_URL % (full_name, "%s"),
+ single_url = COMMIT_URL % (full_name, "%s")
return self._format_push(branch, author, data["commits"],
data["forced"], single_url, range_url)