add some missing import

This commit is contained in:
Yann Leboulanger 2011-11-22 20:08:08 +01:00
parent 2582720366
commit 6c605cad41
5 changed files with 6 additions and 3 deletions

View File

@ -28,6 +28,7 @@ import gajim
from jingle_transport import JingleTransportICEUDP
from jingle_content import contents, JingleContent, JingleContentSetupException
from connection_handlers_events import InformationEvent
import logging

View File

@ -38,7 +38,7 @@ from common import gajim
from common import helpers
from common import dataforms
from common.connection_handlers_events import FileRequestReceivedEvent, \
FileRequestErrorEvent
FileRequestErrorEvent, InformationEvent
from common import ged
from common.socks5 import Socks5Receiver

View File

@ -68,6 +68,7 @@ except ImportError:
HAS_GST = False
from common.exceptions import GajimGeneralException
from common.connection_handlers_events import InformationEvent
#---------- PreferencesWindow class -------------#
class PreferencesWindow:

View File

@ -81,7 +81,7 @@ from common import dataforms
from common import passwords
from common import logging_helpers
from common.connection_handlers_events import OurShowEvent, \
FileRequestErrorEvent
FileRequestErrorEvent, InformationEvent
from common.connection import Connection
import roster_window

View File

@ -28,7 +28,8 @@ from common import gajim
from common import stanza_session
from common import contacts
from common import ged
from common.connection_handlers_events import ChatstateReceivedEvent
from common.connection_handlers_events import ChatstateReceivedEvent, \
InformationEvent
import common.xmpp