[Checkins] SVN: gocept.selenium/trunk/src/gocept/selenium/base.py	format layer name more nicely
    Wolfgang Schnerring 
    wosc at wosc.de
       
    Thu Aug 12 02:40:11 EDT 2010
    
    
  
Log message for revision 115645:
  format layer name more nicely
  
Changed:
  U   gocept.selenium/trunk/src/gocept/selenium/base.py
-=-
Modified: gocept.selenium/trunk/src/gocept/selenium/base.py
===================================================================
--- gocept.selenium/trunk/src/gocept/selenium/base.py	2010-08-12 06:19:20 UTC (rev 115644)
+++ gocept.selenium/trunk/src/gocept/selenium/base.py	2010-08-12 06:40:11 UTC (rev 115645)
@@ -34,7 +34,7 @@
     def __init__(self, *bases):
         self.__bases__ = bases
         self.__name__ = '[%s].selenium' % (
-            '/'.join(x.__module__ + x.__name__ for x in bases))
+            '/'.join('%s.%s' % (x.__module__, x.__name__) for x in bases))
 
     def setUp(self):
         self.selenium = selenium.selenium(
    
    
More information about the checkins
mailing list