1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-18 01:56:15 +02:00

Micro cleanup

Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
Simon Hausmann 2007-05-01 23:15:48 +02:00
parent ff5dba20e3
commit 1c094184da

View File

@ -74,7 +74,7 @@ def extractLogMessageFromGitCommit(commit):
for log in os.popen("git cat-file commit %s" % commit).readlines():
if not foundTitle:
if len(log) == 1:
foundTitle = 1
foundTitle = True
continue
logMessage += log