Skip to content

Commit 27ee192

Browse files
committed
Removed print statements
1 parent d714a03 commit 27ee192

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252

5353
from ... import config, logging
5454
logger = logging.getLogger('workflow')
55+
5556
from ...interfaces.base import (traits, InputMultiPath, CommandLine,
5657
Undefined, TraitedSpec, DynamicTraitedSpec,
5758
Bunch, InterfaceResult, md5, Interface,
@@ -670,6 +671,7 @@ def _copyfiles_to_wd(self, outdir, execute, linksonly=False):
670671
os.makedirs(outdir)
671672
for info in self._interface._get_filecopy_info():
672673
files = self.inputs.get().get(info['key'])
674+
print '######## files: %s' % (str(files))
673675
if not isdefined(files):
674676
continue
675677
if files:

nipype/pipeline/plugins/multiproc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def _send_procs_to_workers(self, updatehash=False, graph=None):
265265
self._remove_node_dirs()
266266

267267
else:
268-
logger.debug('submitting', jobid)
268+
logger.debug('submitting %s' % str(jobid))
269269
tid = self._submit_job(deepcopy(self.procs[jobid]), updatehash=updatehash)
270270
if tid is None:
271271
self.proc_done[jobid] = False

0 commit comments

Comments
 (0)