summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/peers_tab.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/gtk3/peers_tab.py')
-rw-r--r--deluge/ui/gtk3/peers_tab.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/gtk3/peers_tab.py b/deluge/ui/gtk3/peers_tab.py
index b458f7a..5768fbe 100644
--- a/deluge/ui/gtk3/peers_tab.py
+++ b/deluge/ui/gtk3/peers_tab.py
@@ -186,7 +186,7 @@ class PeersTab(Tab):
if state['sort_id'] and state['sort_order'] is not None:
self.liststore.set_sort_column_id(state['sort_id'], state['sort_order'])
- for (index, column) in enumerate(self.listview.get_columns()):
+ for index, column in enumerate(self.listview.get_columns()):
cname = column.get_title()
if cname in state['columns']:
cstate = state['columns'][cname]