From 31e3e39a862b9cb28e2e0bcec36c444ffa56ef23 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sun, 3 Apr 2011 16:52:16 +0200 Subject: [PATCH] fixed missing space Signed-off-by: Sven Strickroth --- src/TortoiseProc/RebaseDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TortoiseProc/RebaseDlg.cpp b/src/TortoiseProc/RebaseDlg.cpp index 01c9f4136..b5fe36a31 100644 --- a/src/TortoiseProc/RebaseDlg.cpp +++ b/src/TortoiseProc/RebaseDlg.cpp @@ -1241,7 +1241,7 @@ int CRebaseDlg::DoRebase() nocommit=_T(" --no-commit "); CString log; - log.Format(_T("%s %d:%s"),CTGitPath::GetActionName(mode),this->GetCurrentCommitID(),pRev->m_CommitHash.ToString()); + log.Format(_T("%s %d: %s"),CTGitPath::GetActionName(mode),this->GetCurrentCommitID(),pRev->m_CommitHash.ToString()); AddLogString(log); AddLogString(pRev->GetSubject()); cmd.Format(_T("git.exe cherry-pick %s %s"),nocommit,pRev->m_CommitHash.ToString()); -- 2.11.4.GIT