From: Marius Storm-Olsen Date: Thu, 7 Jun 2007 13:08:33 +0000 (+0200) Subject: Fix git-p4 clone (defaultDestination) X-Git-Tag: v1.5.3-rc0~65^2^2~20^2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=98ad4faf95c1e98d6f1aaccda6d96a00a3cddeed;p=git.git Fix git-p4 clone (defaultDestination) Signed-off-by: Marius Storm-Olsen --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index fc4e7d26f..89581eaca 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -1369,7 +1369,7 @@ class P4Clone(P4Sync): return False if not self.cloneDestination: - self.cloneDestination = self.defaultDestination() + self.cloneDestination = self.defaultDestination(args) print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination) os.makedirs(self.cloneDestination)