[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture - SkinService.py:1.1.2.2

Jim Fulton jim@zope.com
Fri, 8 Feb 2002 08:13:56 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture
In directory cvs.zope.org:/tmp/cvs-serv15695

Modified Files:
      Tag: Zope-3x-branch
	SkinService.py 
Log Message:
Changed to to return sequence with default layer when no skin found.


=== Zope3/lib/python/Zope/ComponentArchitecture/SkinService.py 1.1.2.1 => 1.1.2.2 ===
         if not skin:
             return _default
-        return ()
+        return ('',)
 
     def _clear(self):
         self.__init__()