ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/GetOutput.py
(Generate patch)

Comparing COMP/CRAB/python/GetOutput.py (file contents):
Revision 1.53 by fanzago, Fri Jul 10 13:10:22 2009 UTC vs.
Revision 1.54 by spiga, Wed Jul 22 22:19:48 2009 UTC

# Line 57 | Line 57 | class GetOutput(Actor):
57              if self.jobs == 'all':
58                  self.list_id= list_id_done
59                  if len(self.up_task.jobs)>len(self.list_id):
60 <                    msg = '\nOnly %d jobs will be retrieved '% (len(self.list_id))
60 >                    msg = 'Only %d jobs will be retrieved '% (len(self.list_id))
61                      msg += ' from %d requested.\n'%(len(self.up_task.jobs))
62 <                    msg += ' (for details: crab -status)'
62 >                    msg += '\t(for details: crab -status)'
63                      common.logger.info(msg)
64              else:
65                  for id in self.jobs:
66                      if id in list_id_done: self.list_id.append(id)  
67                  if len(self.jobs) > len(self.list_id):
68 <                    msg = '\nOnly %d jobs will be retrieved '% (len(self.list_id))
68 >                    msg = 'Only %d jobs will be retrieved '% (len(self.list_id))
69                      msg += ' from %d requested.\n'%(len(self.jobs))
70 <                    msg += ' (for details: crab -status)'
70 >                    msg += '\t(for details: crab -status)'
71                      common.logger.info(msg)
72          if not os.path.isdir(self.logDir) or not os.path.isdir(self.outDir):
73              msg =  ' Output or Log dir not found!! check '+self.logDir+' and '+self.outDir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines