[Zope-Checkins] CVS: Zope/inst - compilezpy.py:1.9

Matt Behrens matt@zigg.com
Wed, 14 Aug 2002 15:40:18 -0400


Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv19930/inst

Modified Files:
	compilezpy.py 
Log Message:
#178: don't compile PythonScripts in skins directories


=== Zope/inst/compilezpy.py 1.8 => 1.9 ===
--- Zope/inst/compilezpy.py:1.8	Mon Jan 21 10:48:59 2002
+++ Zope/inst/compilezpy.py	Wed Aug 14 15:40:17 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