Return-Path: X-Original-To: apmail-oodt-dev-archive@www.apache.org Delivered-To: apmail-oodt-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 530D966F2 for ; Sat, 18 Jun 2011 21:28:03 +0000 (UTC) Received: (qmail 57342 invoked by uid 500); 18 Jun 2011 21:28:03 -0000 Delivered-To: apmail-oodt-dev-archive@oodt.apache.org Received: (qmail 57319 invoked by uid 500); 18 Jun 2011 21:28:03 -0000 Mailing-List: contact dev-help@oodt.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@oodt.apache.org Delivered-To: mailing list dev@oodt.apache.org Received: (qmail 57311 invoked by uid 99); 18 Jun 2011 21:28:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jun 2011 21:28:03 +0000 X-ASF-Spam-Status: No, hits=0.7 required=5.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [204.13.248.66] (HELO mho-01-ewr.mailhop.org) (204.13.248.66) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 18 Jun 2011 21:27:56 +0000 Received: from cpe-76-182-233-227.tx.res.rr.com ([76.182.233.227] helo=[172.16.16.4]) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.72) (envelope-from ) id 1QY33H-0006g2-Hp for dev@oodt.apache.org; Sat, 18 Jun 2011 21:27:35 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 76.182.233.227 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1/C+D7VnsTWFmO++oSsEpwUcyRd+bFq0bM= Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1084) Subject: Re: svn commit: r1137245 - /oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/errors.py From: Sean Kelly In-Reply-To: <20110618204639.D465923889B2@eris.apache.org> Date: Sat, 18 Jun 2011 16:27:33 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <2535301E-A8DC-4AD0-87FF-B6738415BA67@apache.org> References: <20110618204639.D465923889B2@eris.apache.org> To: dev@oodt.apache.org X-Mailer: Apple Mail (2.1084) Heh, good catch! On 2011.Jun.18, at 3.46p, mattmann@apache.org wrote: > Author: mattmann > Date: Sat Jun 18 20:46:39 2011 > New Revision: 1137245 >=20 > URL: http://svn.apache.org/viewvc?rev=3D1137245&view=3Drev > Log: > - found this bug while trying to publish the MVN site without having = run site:site :-) >=20 > Modified: > oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/errors.py >=20 > Modified: = oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/errors.py > URL: = http://svn.apache.org/viewvc/oodt/tools/oodtsite.publisher/trunk/oodtsite/= publisher/errors.py?rev=3D1137245&r1=3D1137244&r2=3D1137245&view=3Ddiff > = =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 > --- oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/errors.py = (original) > +++ oodt/tools/oodtsite.publisher/trunk/oodtsite/publisher/errors.py = Sat Jun 18 20:46:39 2011 > @@ -24,7 +24,7 @@ class PublicationError(Exception): > class _PublicationFilesystemEntryError(PublicationError): > '''Abstract exception indicating that a required entry in the = filesystem is missing''' > def __init__(self, path, kind): > - super(_PublicationFilesystemEntryNotFound, = self).__init__('Required "%s" not found (or is not a %s)' % (path, = kind)) > + super(_PublicationFilesystemEntryError, = self).__init__('Required "%s" not found (or is not a %s)' % (path, = kind)) >=20 > class PublicationFileNotFound(_PublicationFilesystemEntryError): > '''Exception indicating a file is missing''' >=20 >=20