Return-Path: Delivered-To: apmail-gump-commits-archive@www.apache.org Received: (qmail 47561 invoked from network); 22 Mar 2005 12:00:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Mar 2005 12:00:19 -0000 Received: (qmail 98671 invoked by uid 500); 22 Mar 2005 12:00:19 -0000 Mailing-List: contact commits-help@gump.apache.org; run by ezmlm Precedence: bulk Reply-To: commits@gump.apache.org List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@gump.apache.org Received: (qmail 98657 invoked by uid 99); 22 Mar 2005 12:00:19 -0000 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 minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 22 Mar 2005 04:00:19 -0800 Received: (qmail 47558 invoked by uid 65534); 22 Mar 2005 12:00:18 -0000 Message-ID: <20050322120018.47557.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Mailer: svnmailer-1.0.0-dev Date: Tue, 22 Mar 2005 12:00:17 -0000 Subject: svn commit: r158599 - gump/trunk/python/gump/util/domutils.py To: commits@gump.apache.org From: ajack@apache.org X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ajack Date: Tue Mar 22 04:00:17 2005 New Revision: 158599 URL: http://svn.apache.org/viewcvs?view=3Drev&rev=3D158599 Log: Gotta love those Python runtime errors. :( element.name !=3D element,name Modified: gump/trunk/python/gump/util/domutils.py Modified: gump/trunk/python/gump/util/domutils.py URL: http://svn.apache.org/viewcvs/gump/trunk/python/gump/util/domutils.py?= view=3Ddiff&r1=3D158598&r2=3D158599 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- gump/trunk/python/gump/util/domutils.py (original) +++ gump/trunk/python/gump/util/domutils.py Tue Mar 22 04:00:17 2005 @@ -168,7 +168,7 @@ =20 def domAttributeIsTrue(element,name): return hasDomAttribute(element,name) and \ - getDomAttributeValue(element.name) in ['true','True'] + getDomAttributeValue(element,name) in ['true','True'] =20 =20 def getDomAttributeValue(element,name,default=3DNone):