Changeset 1629:df23879dec70

Show
Ignore:
Timestamp:
11/12/08 15:42:46 (2 months ago)
Author:
Greg Von Kuster <greg@bx.psu.edu>
branch:
default
Message:

Fix a bug I missed in my last commit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • scripts/others/incorrect_gops_jobs.py

    r1628 r1629  
    7878    print "#job_id\thda_id\thda_name\thda_info\thistory_id\thistory_name\thistory_update_time\tuser_email" 
    7979    for jid in jobs: 
    80         print "%s\t%s\t%s\t%s\t%s\t%s\t%s" % \ 
    81             ( jid, jobs[ jid ][ 'hda_id' ],  
     80        print "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s" % \ 
     81            ( str( jid ),  
     82              str( jobs[ jid ][ 'hda_id' ] ),  
    8283              jobs[ jid ][ 'hda_name' ],  
    8384              jobs[ jid ][ 'hda_info' ], 
    84               jobs[ jid ][ 'history_id' ]
     85              str( jobs[ jid ][ 'history_id' ] )
    8586              jobs[ jid ][ 'history_name' ], 
    8687              jobs[ jid ][ 'history_update_time' ],