add some missing import
This commit is contained in:
parent
2582720366
commit
6c605cad41
|
@ -28,6 +28,7 @@ import gajim
|
||||||
|
|
||||||
from jingle_transport import JingleTransportICEUDP
|
from jingle_transport import JingleTransportICEUDP
|
||||||
from jingle_content import contents, JingleContent, JingleContentSetupException
|
from jingle_content import contents, JingleContent, JingleContentSetupException
|
||||||
|
from connection_handlers_events import InformationEvent
|
||||||
|
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
|
@ -38,7 +38,7 @@ from common import gajim
|
||||||
from common import helpers
|
from common import helpers
|
||||||
from common import dataforms
|
from common import dataforms
|
||||||
from common.connection_handlers_events import FileRequestReceivedEvent, \
|
from common.connection_handlers_events import FileRequestReceivedEvent, \
|
||||||
FileRequestErrorEvent
|
FileRequestErrorEvent, InformationEvent
|
||||||
from common import ged
|
from common import ged
|
||||||
|
|
||||||
from common.socks5 import Socks5Receiver
|
from common.socks5 import Socks5Receiver
|
||||||
|
|
|
@ -68,6 +68,7 @@ except ImportError:
|
||||||
HAS_GST = False
|
HAS_GST = False
|
||||||
|
|
||||||
from common.exceptions import GajimGeneralException
|
from common.exceptions import GajimGeneralException
|
||||||
|
from common.connection_handlers_events import InformationEvent
|
||||||
|
|
||||||
#---------- PreferencesWindow class -------------#
|
#---------- PreferencesWindow class -------------#
|
||||||
class PreferencesWindow:
|
class PreferencesWindow:
|
||||||
|
|
|
@ -81,7 +81,7 @@ from common import dataforms
|
||||||
from common import passwords
|
from common import passwords
|
||||||
from common import logging_helpers
|
from common import logging_helpers
|
||||||
from common.connection_handlers_events import OurShowEvent, \
|
from common.connection_handlers_events import OurShowEvent, \
|
||||||
FileRequestErrorEvent
|
FileRequestErrorEvent, InformationEvent
|
||||||
from common.connection import Connection
|
from common.connection import Connection
|
||||||
|
|
||||||
import roster_window
|
import roster_window
|
||||||
|
|
|
@ -28,7 +28,8 @@ from common import gajim
|
||||||
from common import stanza_session
|
from common import stanza_session
|
||||||
from common import contacts
|
from common import contacts
|
||||||
from common import ged
|
from common import ged
|
||||||
from common.connection_handlers_events import ChatstateReceivedEvent
|
from common.connection_handlers_events import ChatstateReceivedEvent, \
|
||||||
|
InformationEvent
|
||||||
|
|
||||||
import common.xmpp
|
import common.xmpp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue