Remove print statements

This commit is contained in:
Charles Haley 2011-06-18 07:07:41 +01:00
parent d280eb8c29
commit f132c76e02

View File

@ -284,11 +284,8 @@ class DeviceManager(Thread): # {{{
self.job_manager.add_job(job) self.job_manager.add_job(job)
if (done is None or isinstance(done, FunctionDispatcher)) and \ if (done is None or isinstance(done, FunctionDispatcher)) and \
(to_job is not None and to_job == self.current_job): (to_job is not None and to_job == self.current_job):
print "adding as step", description
self.job_steps.put(job) self.job_steps.put(job)
else: else:
print "adding as job not step", description
traceback.print_stack()
self.jobs.put(job) self.jobs.put(job)
return job return job