summaryrefslogtreecommitdiff
path: root/src/windows.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2011-11-06 21:10:09 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-08 00:47:56 +0100
commit51364f7bea78f27820c67bf83a8e62ca593d61bb (patch)
treefd26f69fa343aef218637f9f3b46e2ed2b2abe0c /src/windows.py
parent32a75fd5c746ba6080f43ef56be361deb2e3bad3 (diff)
downloadpoezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.gz
poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.bz2
poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.xz
poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.zip
Code cleanup (unused import, variables, undefined names, etc…)
Diffstat (limited to 'src/windows.py')
-rw-r--r--src/windows.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/windows.py b/src/windows.py
index 1ff8f858..a6b1993b 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -14,26 +14,23 @@ A Tab (see tab.py) is composed of multiple Windows
from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset,
gettext as _)
-from os.path import isfile
import logging
log = logging.getLogger(__name__)
-import shlex
import curses
import string
from config import config
from threading import RLock
-from contact import Contact, Resource
-from roster import RosterGroup, roster
+from contact import Contact
+from roster import RosterGroup
from poopt import cut_text
from sleekxmpp.xmlstream.stanzabase import JID
import core
-import common
import wcwidth
import singleton
import collections
@@ -1472,11 +1469,9 @@ class RosterWin(Win):
if not resource:
# There's no online resource
presence = 'unavailable'
- folder = ' '
nb = ''
else:
presence = resource.get_presence()
- folder = '[+]' if contact._folded else '[-]'
nb = ' (%s)' % (contact.get_nb_resources(),)
color = RosterWin.color_show[presence]
if contact.get_name():
@@ -1520,11 +1515,11 @@ class ContactInfoWin(Win):
"""
draw the contact information
"""
+ resource = contact.get_highest_priority_resource()
if contact:
jid = contact.get_bare_jid()
else:
jid = jid or resource.get_jid().full
- resource = contact.get_highest_priority_resource()
if resource:
presence = resource.get_presence()
else: