Return-Path: Delivered-To: apmail-gump-commits-archive@www.apache.org Received: (qmail 67811 invoked from network); 7 Jul 2005 20:54:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Jul 2005 20:54:53 -0000 Received: (qmail 69641 invoked by uid 500); 7 Jul 2005 20:54:52 -0000 Mailing-List: contact commits-help@gump.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@gump.apache.org Delivered-To: mailing list commits@gump.apache.org Received: (qmail 69628 invoked by uid 99); 7 Jul 2005 20:54:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Jul 2005 13:54:52 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 07 Jul 2005 13:54:51 -0700 Received: (qmail 67807 invoked by uid 65534); 7 Jul 2005 20:54:50 -0000 Message-ID: <20050707205450.67806.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209645 - /gump/branches/Gump3/pygump/python/gump/model/util.py Date: Thu, 07 Jul 2005 20:54:50 -0000 To: commits@gump.apache.org From: leosimons@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: leosimons Date: Thu Jul 7 13:54:49 2005 New Revision: 209645 URL: http://svn.apache.org/viewcvs?rev=209645&view=rev Log: Fix naming error in this method Modified: gump/branches/Gump3/pygump/python/gump/model/util.py Modified: gump/branches/Gump3/pygump/python/gump/model/util.py URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/model/util.py?rev=209645&r1=209644&r2=209645&view=diff ============================================================================== --- gump/branches/Gump3/pygump/python/gump/model/util.py (original) +++ gump/branches/Gump3/pygump/python/gump/model/util.py Thu Jul 7 13:54:49 2005 @@ -227,17 +227,17 @@ # only the "runtime" dependencies. if recurse: if info.inherit == DEPENDENCY_INHERIT_ALL or info.inherit == DEPENDENCY_INHERIT_HARD: - (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=False) + (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=False) classpath.extend(inheritedclasspath) bootclasspath.extend(inheritedbootclasspath) if info.inherit == DEPENDENCY_INHERIT_JARS: - (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=True) + (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=True) classpath.extend(inheritedclasspath) bootclasspath.extend(inheritedbootclasspath) if info.inherit == DEPENDENCY_INHERIT_RUNTIME: - (inheritedclasspath, inheritedbootclasspath) = get_classpath(workdir, dependency, recurse=False, runtimeonly=True) + (inheritedclasspath, inheritedbootclasspath) = calculate_classpath(workdir, dependency, recurse=False, runtimeonly=True) classpath.extend(inheritedclasspath) bootclasspath.extend(inheritedbootclasspath)