[Zope-Checkins] SVN: Zope/trunk/inst/generate_externals.py cosmetic
changes
Andreas Jung
andreas at andreas-jung.com
Sat May 24 07:08:54 EDT 2008
Log message for revision 86922:
cosmetic changes
Changed:
U Zope/trunk/inst/generate_externals.py
-=-
Modified: Zope/trunk/inst/generate_externals.py
===================================================================
--- Zope/trunk/inst/generate_externals.py 2008-05-24 00:58:25 UTC (rev 86921)
+++ Zope/trunk/inst/generate_externals.py 2008-05-24 11:08:52 UTC (rev 86922)
@@ -57,13 +57,15 @@
try:
tag = CP.get('versions', full_mod_name)
n = '/'.join(full_mod_name.split('.'))
- url = 'svn://svn.zope.org/repos/main/%s/tags/%s/src/%s' % (full_mod_name, tag, n)
+ url = 'svn://svn.zope.org/repos/main/%s/tags/%s/src/%s' % \
+ (full_mod_name, tag, n)
ok = True
except NoOptionError:
ok = False
print >>error, 'WARN: KGS incomplete - %s not found' % full_mod_name
if not ok:
- print >>fp, '# warning: KGS incomplete, using old URL for %s' % module
- print >>fp, '%-20s %s' % (module, url)
+ print >>fp, '# warning: %s not found in KGS, using old URL for %s' % \
+ (module, module)
+ print >>fp, '%-20s %s' % (module, url)
fp.close()
More information about the Zope-Checkins
mailing list