From e22b86f010f57572c6fe8c7fe53d69d602c8e14b Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Wed, 23 May 2007 16:55:48 -0300 Subject: [PATCH] rename apply() to applyCommit(); apply is a python builtin --- git-p4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-p4 b/git-p4 index aba4752..bd0ea54 100755 --- a/git-p4 +++ b/git-p4 @@ -259,7 +259,7 @@ class P4Submit(Command): return result - def apply(self, id): + def applyCommit(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.applyCommit(commit) if not self.interactive: break -- 2.11.4.GIT