diff options
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/windows.py b/src/windows.py index fd66d475..60871821 100644 --- a/src/windows.py +++ b/src/windows.py @@ -12,8 +12,6 @@ the text window, the roster window, etc. A Tab (see tab.py) is composed of multiple Windows """ -from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset, - gettext as _) import logging log = logging.getLogger(__name__) @@ -30,7 +28,6 @@ from contact import Contact, Resource from roster import RosterGroup import poopt -from sleekxmpp import JID from common import safeJID import common @@ -38,7 +35,7 @@ import core import singleton import collections -from theming import get_theme, to_curses_attr, read_tuple, dump_tuple +from theming import get_theme, to_curses_attr, read_tuple FORMAT_CHAR = '\x19' # These are non-printable chars, so they should never appear in the input, I |