Extra debug info.

This commit is contained in:
Andrew Resch 2007-11-12 04:51:23 +00:00
parent a8c796ba59
commit 190d6d94ea
1 changed files with 3 additions and 3 deletions

View File

@ -233,9 +233,9 @@ class TorrentView(listview.ListView, component.Component):
model.set_value(row, model.set_value(row,
column_index, column_index,
status[self.columns[column].status_field[0]]) status[self.columns[column].status_field[0]])
except (TypeError, KeyError): except (TypeError, KeyError), e:
log.warning("Unable to update column %s", log.warning("Unable to update column %s: %s",
column) column, e)
else: else:
# We have more than 1 liststore column to update # We have more than 1 liststore column to update
for index in column_index: for index in column_index: