Commit a1625a5f authored by matt@zope.com's avatar matt@zope.com

REmove debuging statemetns

parent 2e87ae55
...@@ -85,10 +85,10 @@ ...@@ -85,10 +85,10 @@
""" """
Core session tracking SessionData class. Core session tracking SessionData class.
$Id: Transience.py,v 1.10 2001/11/07 20:13:16 matt Exp $ $Id: Transience.py,v 1.11 2001/11/07 20:20:26 matt Exp $
""" """
__version__='$Revision: 1.10 $'[11:-2] __version__='$Revision: 1.11 $'[11:-2]
import Globals import Globals
from Globals import HTMLFile, MessageDialog from Globals import HTMLFile, MessageDialog
...@@ -267,7 +267,6 @@ class TransientObjectContainer(SimpleItem): ...@@ -267,7 +267,6 @@ class TransientObjectContainer(SimpleItem):
def setAddNotificationTarget(self, f): def setAddNotificationTarget(self, f):
# We should assert that the callback function 'f' implements # We should assert that the callback function 'f' implements
# the TransientNotification interface # the TransientNotification interface
print "setting addNotificationTarget to %s" % f
self._addCallback = f self._addCallback = f
security.declareProtected(MGMT_SCREEN_PERM, 'getDelNotificationTarget') security.declareProtected(MGMT_SCREEN_PERM, 'getDelNotificationTarget')
...@@ -279,7 +278,6 @@ class TransientObjectContainer(SimpleItem): ...@@ -279,7 +278,6 @@ class TransientObjectContainer(SimpleItem):
def setDelNotificationTarget(self, f): def setDelNotificationTarget(self, f):
# We should assert that the callback function 'f' implements # We should assert that the callback function 'f' implements
# the TransientNotification interface # the TransientNotification interface
print "setting delNotificationTarget to %s" % f
self._delCallback = f self._delCallback = f
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment