summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 81b462a)
raw | patch | inline | side by side (parent: 81b462a)
author | Simon Hausmann <simon@lst.de> | |
Mon, 11 Jun 2007 21:40:25 +0000 (23:40 +0200) | ||
committer | Simon Hausmann <simon@lst.de> | |
Mon, 11 Jun 2007 21:41:41 +0000 (23:41 +0200) |
Noticed by Alex Riesen
Signed-off-by: Simon Hausmann <simon@lst.de>
Signed-off-by: Simon Hausmann <simon@lst.de>
contrib/fast-import/git-p4 | patch | blob | history |
index 6c199296d39869aae435e95590b776c6ded705a1..21f9ba7e07e8eb577c9ef722fd30f7f30ce9f652 100755 (executable)
system(applyPatchCmd)
for f in filesToAdd:
- system("p4 add %s" % f)
+ system("p4 add \"%s\"" % f)
for f in filesToDelete:
- system("p4 revert %s" % f)
- system("p4 delete %s" % f)
+ system("p4 revert \"%s\"" % f)
+ system("p4 delete \"%s\"" % f)
logMessage = ""
if not self.directSubmit: