diff options
author | Simon Hausmann <simon@lst.de> | 2007-05-01 23:15:48 +0200 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-05-01 23:15:48 +0200 |
commit | 1c094184da5c7bf572c907633279890bd15d1952 (patch) | |
tree | 7c519dda8c2e48952093c07b275dd97dd476e15a /contrib | |
parent | Doc cleanups. (diff) | |
download | tgif-1c094184da5c7bf572c907633279890bd15d1952.tar.xz |
Micro cleanup
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index fb13469ce2..9adc66a05d 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -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 |