Cross Forests
/
projects
/
python
/
fast-export.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd609cf
)
rename apply() to applyCommit(); apply is a python builtin
author
Han-Wen Nienhuys
<hanwen@google.com>
Wed, 23 May 2007 19:55:48 +0000
(16:55 -0300)
committer
Simon Hausmann
<simon@lst.de>
Mon, 28 May 2007 12:29:11 +0000
(14:29 +0200)
git-p4
patch
|
blob
|
history
diff --git
a/git-p4
b/git-p4
index
aba4752
..
bd0ea54
100755
(executable)
--- a/
git-p4
+++ b/
git-p4
@@
-259,7
+259,7
@@
class P4Submit(Command):
return result
- def apply(self, id):
+ def apply
Commit
(self, id):
if self.directSubmit:
print "Applying local change in working directory/index"
diff = self.diffStatus
@@
-494,7
+494,7
@@
class P4Submit(Command):
commit = commits[0]
commits = commits[1:]
self.config["commits"] = commits
- self.apply(commit)
+ self.apply
Commit
(commit)
if not self.interactive:
break