Changeset 1629:df23879dec70
- 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
| r1628 |
r1629 |
|
| 78 | 78 | print "#job_id\thda_id\thda_name\thda_info\thistory_id\thistory_name\thistory_update_time\tuser_email" |
|---|
| 79 | 79 | 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' ] ), |
|---|
| 82 | 83 | jobs[ jid ][ 'hda_name' ], |
|---|
| 83 | 84 | jobs[ jid ][ 'hda_info' ], |
|---|
| 84 | | jobs[ jid ][ 'history_id' ], |
|---|
| | 85 | str( jobs[ jid ][ 'history_id' ] ), |
|---|
| 85 | 86 | jobs[ jid ][ 'history_name' ], |
|---|
| 86 | 87 | jobs[ jid ][ 'history_update_time' ], |
|---|