Changeset 3315

Show
Ignore:
Timestamp:
08/19/07 12:12:51 (1 year ago)
Author:
ed
Message:

Removed debugging lines.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/dApp.py

    r3314 r3315  
    718718        token will receive a reply of False, meaning that they should not be handling the transaction. 
    719719        """ 
    720         print "TOKEN REQUEST", biz 
    721720        if self._transactionBizobj is None: 
    722             print "TOKEN SET TO ", biz 
    723721            self._transactionBizobj = biz 
    724722            return True 
    725723        else: 
    726             print "TOKEN DENIED; holder=", self._transactionBizobj 
    727724            return False 
    728725 
     
    734731        internal attribute is reset. 
    735732        """ 
    736         print "APP RELEASE TOKEN FROM:", biz, 
    737733        if biz is self._transactionBizobj: 
    738734            self._transactionBizobj = None 
    739             print "RELEASED", 
    740         print "" 
    741735 
    742736