Extra debug info.
This commit is contained in:
parent
a8c796ba59
commit
190d6d94ea
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue