[Zope-CVS] CVS: Packages/zpkgtools/zpkgtools - app.py:1.43
Fred L. Drake, Jr.
fred at zope.com
Fri Apr 30 13:49:13 EDT 2004
Update of /cvs-repository/Packages/zpkgtools/zpkgtools
In directory cvs.zope.org:/tmp/cvs-serv13374
Modified Files:
app.py
Log Message:
report the directory we looked in and couldn't find the required
PUBLICATION.cfg file in
=== Packages/zpkgtools/zpkgtools/app.py 1.42 => 1.43 ===
--- Packages/zpkgtools/zpkgtools/app.py:1.42 Thu Apr 29 19:38:04 2004
+++ Packages/zpkgtools/zpkgtools/app.py Fri Apr 30 13:49:12 2004
@@ -298,8 +298,8 @@
def load_metadata(self):
metadata_file = os.path.join(self.source, publication.PUBLICATION_CONF)
if not os.path.isfile(metadata_file):
- self.error("source-dir does not contain required"
- " publication data file")
+ self.error("source-dir (%r) does not contain required"
+ " publication data file" % self.source)
f = open(metadata_file)
try:
self.metadata = publication.load(f)
More information about the Zope-CVS
mailing list