зеркало из https://github.com/microsoft/git.git
rename apply() to applyCommit(); apply is a python builtin
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
This commit is contained in:
Родитель
cebdf5af31
Коммит
7cb5cbefd2
|
@ -259,7 +259,7 @@ class P4Submit(Command):
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def apply(self, id):
|
def applyCommit(self, id):
|
||||||
if self.directSubmit:
|
if self.directSubmit:
|
||||||
print "Applying local change in working directory/index"
|
print "Applying local change in working directory/index"
|
||||||
diff = self.diffStatus
|
diff = self.diffStatus
|
||||||
|
@ -494,7 +494,7 @@ class P4Submit(Command):
|
||||||
commit = commits[0]
|
commit = commits[0]
|
||||||
commits = commits[1:]
|
commits = commits[1:]
|
||||||
self.config["commits"] = commits
|
self.config["commits"] = commits
|
||||||
self.apply(commit)
|
self.applyCommit(commit)
|
||||||
if not self.interactive:
|
if not self.interactive:
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче