Skip to content
Snippets Groups Projects
Commit 416a1ecc authored by Marco Clemencic's avatar Marco Clemencic
Browse files

remove unnecessary printouts in GaudiPython.TupleUtils

Fixes GAUDI-1171

See merge request !109
parents 1a03c30c f71311ef
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,6 @@ def _getToolSvc( **kwargs ) :
## Retrive N-Tuple ( book on demand )
def _nTuple_ ( s , *args ) :
""" Retrive N-tuple ( book on demand ) """
print 'ARGS:' , args
return _Deco.nTuple ( s , *args)
# =============================================================================
......@@ -159,14 +158,11 @@ def releaseTuples () :
The method needs to be invoked explicitely at the end of the job
"""
if not _TOOLS_ : return
print ' %s/%s: release all pending ITupleTools: %s' % ( __file__ ,
__name__ ,
len(_TOOLS_) )
from GaudiPython.Bindings import _gaudi
if not _gaudi : return
toolSvc = _getToolSvc()
if toolSvc.isValid() :
if toolSvc.isValid() :
while _TOOLS_ :
t = _TOOLS_.pop()
if not t : continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment