From 663176cfc5408d1161943564504c5a10fbb517cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Thu, 24 Aug 2017 01:18:01 +0200 Subject: [PATCH] fix some import warnings and errors pointed out by pylint --- gajim/common/app.py | 12 +++++------- gajim/common/commands.py | 6 +++--- gajim/ipython_view.py | 2 +- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/gajim/common/app.py b/gajim/common/app.py index 710970a3e..4d0aaded1 100644 --- a/gajim/common/app.py +++ b/gajim/common/app.py @@ -30,13 +30,16 @@ import os import logging import locale -import gi import uuid from distutils.version import LooseVersion as V +import gi +import nbxmpp from gajim.common import config -import nbxmpp +from gajim.common import configpaths from gajim.common import ged as ged_module +from gajim.common.contacts import LegacyContactsAPI +from gajim.common.events import Events interface = None # The actual interface (the gtk one for the moment) thread_interface = None # Interface to run a thread and then a callback @@ -54,7 +57,6 @@ log = logging.getLogger('gajim') logger = None -from gajim.common import configpaths gajimpaths = configpaths.gajimpaths VCARD_PATH = gajimpaths['VCARD'] @@ -86,9 +88,6 @@ else: os_info = None # used to cache os information -from gajim.common.contacts import LegacyContactsAPI -from gajim.common.events import Events - gmail_domains = ['gmail.com', 'googlemail.com'] transport_type = {} # list the type of transport @@ -182,7 +181,6 @@ try: except ImportError: HAVE_GPG = False else: - import os import subprocess def test_gpg(binary='gpg'): if os.name == 'nt': diff --git a/gajim/common/commands.py b/gajim/common/commands.py index a02c8956f..d800b30c0 100644 --- a/gajim/common/commands.py +++ b/gajim/common/commands.py @@ -163,11 +163,11 @@ class ChangeStatusCommand(AdHocCommand): return False # finish the session def find_current_groupchats(account): - import message_control + from gajim import message_control rooms = [] for gc_control in app.interface.msg_win_mgr.get_controls( - message_control.TYPE_GC) + app.interface.minimized_controls[account].\ - values(): + message_control.TYPE_GC) + \ + app.interface.minimized_controls[account].values(): acct = gc_control.account # check if account is the good one if acct != account: diff --git a/gajim/ipython_view.py b/gajim/ipython_view.py index 6d9902ff1..ff515c050 100644 --- a/gajim/ipython_view.py +++ b/gajim/ipython_view.py @@ -52,7 +52,7 @@ import re import sys import os from gi.repository import Pango -from StringIO import StringIO +from io import StringIO try: import IPython