Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/jingle_rtp.py1
-rw-r--r--src/common/protocol/bytestream.py2
-rw-r--r--src/config.py1
-rw-r--r--src/gui_interface.py2
-rw-r--r--src/session.py3
5 files changed, 6 insertions, 3 deletions
diff --git a/src/common/jingle_rtp.py b/src/common/jingle_rtp.py
index dc67a0b0c..09fd8a395 100644
--- a/src/common/jingle_rtp.py
+++ b/src/common/jingle_rtp.py
@@ -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
diff --git a/src/common/protocol/bytestream.py b/src/common/protocol/bytestream.py
index 9f36399f3..50ab27835 100644
--- a/src/common/protocol/bytestream.py
+++ b/src/common/protocol/bytestream.py
@@ -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
diff --git a/src/config.py b/src/config.py
index 37e8155b5..379877629 100644
--- a/src/config.py
+++ b/src/config.py
@@ -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:
diff --git a/src/gui_interface.py b/src/gui_interface.py
index 7b8d3941e..13ce60d7e 100644
--- a/src/gui_interface.py
+++ b/src/gui_interface.py
@@ -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
diff --git a/src/session.py b/src/session.py
index 2174b6fc9..295d61735 100644
--- a/src/session.py
+++ b/src/session.py
@@ -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