[omemo] Fix missing imports

This commit is contained in:
Philipp Hörist
2018-10-17 12:46:52 +02:00
parent a76d8af32d
commit 26653d47e9
3 changed files with 4 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ from io import BufferedWriter, FileIO, BytesIO
from gi.repository import GLib from gi.repository import GLib
from gajim.common import app from gajim.common import app
from gajim.common import configpaths from gajim.common import configpaths
from gajim.plugins.plugins_i18n import _
from gajim.gtk.dialogs import ErrorDialog, YesNoDialog from gajim.gtk.dialogs import ErrorDialog, YesNoDialog
from omemo.gtk.progress import ProgressWindow from omemo.gtk.progress import ProgressWindow
if os.name == 'nt': if os.name == 'nt':

View File

@@ -13,6 +13,8 @@ from gajim.common import helpers
from gajim.common import configpaths from gajim.common import configpaths
from gajim.common.connection_handlers_events import MessageNotSentEvent from gajim.common.connection_handlers_events import MessageNotSentEvent
from gajim.plugins.plugins_i18n import _
from omemo.xmpp import ( from omemo.xmpp import (
NS_NOTIFY, NS_OMEMO, NS_EME, NS_HINTS, BundleInformationAnnouncement, NS_NOTIFY, NS_OMEMO, NS_EME, NS_HINTS, BundleInformationAnnouncement,
BundleInformationQuery, DeviceListAnnouncement, DevicelistQuery, BundleInformationQuery, DeviceListAnnouncement, DevicelistQuery,

View File

@@ -34,6 +34,7 @@ from gajim import dialogs
from gajim.common import app, ged from gajim.common import app, ged
from gajim.common.pep import SUPPORTED_PERSONAL_USER_EVENTS from gajim.common.pep import SUPPORTED_PERSONAL_USER_EVENTS
from gajim.plugins import GajimPlugin from gajim.plugins import GajimPlugin
from gajim.plugins.plugins_i18n import _
from gajim.groupchat_control import GroupchatControl from gajim.groupchat_control import GroupchatControl
from omemo.xmpp import DevicelistPEP from omemo.xmpp import DevicelistPEP