Send the full first line of the commit message to Zulip.

(imported from commit accafb1cd2fa64ad1377d0fc72ff8f89c1806d3b)
This commit is contained in:
Steve Howell 2013-08-09 10:34:38 -04:00
parent 48b4fed555
commit 509c3b4dc3
1 changed files with 0 additions and 2 deletions

View File

@ -74,8 +74,6 @@ def git_commit_range(oldrev, newrev):
commits = ''
for ln in subprocess.check_output(log_cmd).splitlines():
email, subject = ln.split(None, 1)
if len(subject) > 60:
subject = subject[:57].rstrip() + '...'
commits += '!gravatar(%s) %s\n' % (email, subject)
return commits