details: http://www.bx.psu.edu/hg/galaxy/rev/df23879dec70 changeset: 1629:df23879dec70 user: Greg Von Kuster <greg@bx.psu.edu> date: Wed Nov 12 15:42:46 2008 -0500 description: Fix a bug I missed in my last commit. 1 file(s) affected in this change: scripts/others/incorrect_gops_jobs.py diffs (19 lines): diff -r 54f12bb6cb29 -r df23879dec70 scripts/others/incorrect_gops_jobs.py --- a/scripts/others/incorrect_gops_jobs.py Wed Nov 12 15:19:27 2008 -0500 +++ b/scripts/others/incorrect_gops_jobs.py Wed Nov 12 15:42:46 2008 -0500 @@ -77,11 +77,12 @@ print "\n\n# Number of incorrect Jobs: %d\n\n" % ( len( jobs ) ) print "#job_id\thda_id\thda_name\thda_info\thistory_id\thistory_name\thistory_update_time\tuser_email" for jid in jobs: - print "%s\t%s\t%s\t%s\t%s\t%s\t%s" % \ - ( jid, jobs[ jid ][ 'hda_id' ], + print "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s" % \ + ( str( jid ), + str( jobs[ jid ][ 'hda_id' ] ), jobs[ jid ][ 'hda_name' ], jobs[ jid ][ 'hda_info' ], - jobs[ jid ][ 'history_id' ], + str( jobs[ jid ][ 'history_id' ] ), jobs[ jid ][ 'history_name' ], jobs[ jid ][ 'history_update_time' ], jobs[ jid ][ 'user_email' ]