diff options
| author | 2019-06-28 07:25:09 +0100 | |
|---|---|---|
| committer | 2019-06-28 07:25:09 +0100 | |
| commit | 4006184385fa6dd40d4880e7308b82c09673624e (patch) | |
| tree | ad73a46e27fd7bfbf55037b3bfabd2deda14c5bc /modules | |
| parent | DEBUG log when we get a tweet from a stream (diff) | |
| signature | ||
remove dangling "," left over from moving code
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/git_webhooks/github.py | 2 |
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) |
