Changeset 2048
- Timestamp:
- 08/04/05 13:55:05 (4 years ago)
- Files:
-
- 1 modified
-
trunk/trac/ticket/report.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/trac/ticket/report.py
r2038 r2048 414 414 415 415 # FIXME: fetchall should probably not be used. 416 info = cursor.fetchall() 417 cols = cursor.description 416 info = cursor.fetchall() or [] 417 cols = cursor.description or [] 418 418 419 419 db.rollback() 420 420 421 return [cols, info]421 return cols, info 422 422 423 423 def get_info(self, db, id, args):
