[Zope-CVS] CVS: Packages/SFTPGateway - setup.py:1.5
Fred L. Drake, Jr.
fred at zope.com
Fri Dec 19 16:34:29 EST 2003
Update of /cvs-repository/Packages/SFTPGateway
In directory cvs.zope.org:/tmp/cvs-serv11861
Modified Files:
setup.py
Log Message:
the Package: and Directory: lines must not be separated by a blank
line; if there is a blank line, reset and start accumulating afresh
=== Packages/SFTPGateway/setup.py 1.4 => 1.5 ===
--- Packages/SFTPGateway/setup.py:1.4 Fri Dec 19 16:17:52 2003
+++ Packages/SFTPGateway/setup.py Fri Dec 19 16:34:28 2003
@@ -58,6 +58,9 @@
filename = os.path.join(here, "thirdparty", "README.txt")
f = file(filename, "rU")
for line in f:
+ if line.strip() == "":
+ package = directory = None
+ continue
parts = line.split(None, 1)
if len(parts) != 2:
continue
More information about the Zope-CVS
mailing list