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:
authorwurstsalat <mailtrash@posteo.de>2023-06-07 22:08:52 +0300
committerwurstsalat <mailtrash@posteo.de>2023-06-07 22:09:01 +0300
commitd9f3255f153975ac4172cbc620c6c7b39f9b9f35 (patch)
tree5b2856e4ef794d483214e7d4860eaeade9d65998
parent04648b02911e724903379fbd7f00be9801fc8adf (diff)
cq: Accounts, ChatListStack: Fix imports
-rw-r--r--gajim/gtk/accounts.py2
-rw-r--r--gajim/gtk/chat_list_stack.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gajim/gtk/accounts.py b/gajim/gtk/accounts.py
index 593e88200..6ee9d9a0a 100644
--- a/gajim/gtk/accounts.py
+++ b/gajim/gtk/accounts.py
@@ -33,7 +33,7 @@ from gajim.common import types
from gajim.common.const import ClientState
from gajim.common.i18n import _
from gajim.common.i18n import p_
-from gajim.common.settings import AllSettingsT
+from gajim.common.setting_values import AllSettingsT
from gajim.gtk.const import Setting
from gajim.gtk.const import SettingKind
diff --git a/gajim/gtk/chat_list_stack.py b/gajim/gtk/chat_list_stack.py
index 72b34b1c0..8362a7b4e 100644
--- a/gajim/gtk/chat_list_stack.py
+++ b/gajim/gtk/chat_list_stack.py
@@ -31,7 +31,7 @@ from gajim.common.i18n import _
from gajim.gtk import structs
from gajim.gtk.chat_filter import ChatFilter
from gajim.gtk.chat_list import ChatList
-from gajim.gtk.chat_list import ChatListRow
+from gajim.gtk.chat_list_row import ChatListRow
from gajim.gtk.dialogs import ConfirmationCheckDialog
from gajim.gtk.dialogs import DialogButton