[Zope-Checkins] CVS: Zope/inst - compilezpy.py:1.7.2.2
Matt Behrens
matt@zigg.com
Wed, 14 Aug 2002 15:42:27 -0400
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv20277/inst
Modified Files:
Tag: Zope-2_5-branch
compilezpy.py
Log Message:
backport #178
=== Zope/inst/compilezpy.py 1.7.2.1 => 1.7.2.2 ===
--- Zope/inst/compilezpy.py:1.7.2.1 Mon Jan 21 10:50:28 2002
+++ Zope/inst/compilezpy.py Wed Aug 14 15:42:26 2002
@@ -35,7 +35,7 @@
fullname = os.path.join(dir, name)
if (name != os.curdir and name != os.pardir and
os.path.isdir(fullname) and not os.path.islink(fullname) and
- name != 'test' and name != 'tests'):
+ name != 'test' and name != 'tests' and name != 'skins'):
success = success and compile_non_test(fullname)
return success