[Checkins] SVN: Products.SQLAlchemyDA/trunk/da.py fixed security assertions

Andreas Jung andreas at andreas-jung.com
Sun May 6 11:55:54 EDT 2007


Log message for revision 75574:
  fixed security assertions
  

Changed:
  U   Products.SQLAlchemyDA/trunk/da.py

-=-
Modified: Products.SQLAlchemyDA/trunk/da.py
===================================================================
--- Products.SQLAlchemyDA/trunk/da.py	2007-05-06 15:31:59 UTC (rev 75573)
+++ Products.SQLAlchemyDA/trunk/da.py	2007-05-06 15:55:54 UTC (rev 75574)
@@ -183,13 +183,13 @@
         return self._wrapper._engine.connection_provider._pool.checkedin() > 0
 
 
-    security.declareProtected(view_management_screens, 'getPoolSize()')
+    security.declareProtected(view_management_screens, 'getPoolSize')
     def getPoolSize(self):
         """ """
         return self._wrapper._engine.connection_provider._pool.size() 
 
 
-    security.declareProtected(view_management_screens, 'getCheckedin()')
+    security.declareProtected(view_management_screens, 'getCheckedin')
     def getCheckedin(self):
         """ """
         return self._wrapper._engine.connection_provider._pool.checkedin() 



More information about the Checkins mailing list