diff options
author | Simon Hausmann <simon@lst.de> | 2007-03-22 20:27:41 +0100 |
---|---|---|
committer | Simon Hausmann <simon@lst.de> | 2007-03-22 20:27:41 +0100 |
commit | a559b289bd78d5a3fac0f908be7d5ff92ad09dcb (patch) | |
tree | e934367c6e140a6ed118773fa6ada4b8c187d717 /contrib/fast-import | |
parent | Removed the .py extension from git-p4 as it's annoying to type every time. (diff) | |
download | tgif-a559b289bd78d5a3fac0f908be7d5ff92ad09dcb.tar.xz |
Changed the format of the imported log message slightly, so that it's easier to parse again.
Signed-off-by: Simon Hausmann <simon@lst.de>
Diffstat (limited to 'contrib/fast-import')
-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 06858844e5..a5b6d94d1a 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -506,7 +506,7 @@ class GitSync(Command): self.gitStream.write("data <<EOT\n") self.gitStream.write(details["desc"]) - self.gitStream.write("\n[ imported from %s; change %s ]\n" % (branchPrefix, details["change"])) + self.gitStream.write("\n[git-p4: depot-path: \"%s\"; change: %s]\n" % (branchPrefix, details["change"])) self.gitStream.write("EOT\n\n") if len(parent) > 0: |